diff --git a/.forgejo/workflows/daily_data_maintenance.yml b/.forgejo/workflows/daily_data_maintenance.yml index 47732ecef5..19b2b72f1a 100644 --- a/.forgejo/workflows/daily_data_maintenance.yml +++ b/.forgejo/workflows/daily_data_maintenance.yml @@ -6,10 +6,10 @@ jobs: daily_data_maintenance: runs-on: [ ubuntu-latest, hetzner-access ] steps: - - uses: actions/checkout@v3 + - uses: https://source.mapcomplete.org/actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: https://source.mapcomplete.org/actions/setup-node@v4 with: node-version: "20" cache: "npm" diff --git a/.forgejo/workflows/deploy_hosted.yml b/.forgejo/workflows/deploy_hosted.yml index 77698c8a79..f945a6b3fa 100644 --- a/.forgejo/workflows/deploy_hosted.yml +++ b/.forgejo/workflows/deploy_hosted.yml @@ -8,15 +8,15 @@ jobs: deploy_on_hosted: runs-on: [ubuntu-latest, hetzner-access] steps: - - uses: actions/checkout@v3 + - uses: https://source.mapcomplete.org/actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: https://source.mapcomplete.org/actions/setup-node@v4 with: node-version: "20" cache: "npm" cache-dependency-path: package-lock.json - + - name: install deps run: npm ci shell: bash @@ -43,8 +43,7 @@ jobs: export NODE_OPTIONS="--max-old-space-size=8192" npm run clean:tests npm run generate:doctests 2>&1 | grep -v "No doctests found in" - vitest --run test - npm run clean:tests + vitest --run test && npm run clean:tests shell: bash @@ -53,25 +52,34 @@ jobs: - name: Zipping dist file run: | - mv dist ${{ github.ref_name }} + mv dist /tmp/${{ github.ref_name }} + cd /tmp zip ${{ github.ref_name }}.zip -r ${{ github.ref_name }}/* + cd - - name: uploading file - run: scp ${{ github.ref_name }}.zip hetzner:/root/staging/ + run: scp /tmp/${{ github.ref_name }}.zip hetzner:/root/staging/ + + - name: cleanup files + run: rm /tmp/${{ github.ref_name }}.zip && rm -rf /tmp/${{ github.ref_name }}/ - name: unzipping remote file run: ssh hetzner "cd /root/staging && rm -rf ${{ github.ref_name }} && unzip ${{ github.ref_name }}.zip && rm -rf /root/public/${{ github.ref_name }} && mv /root/staging/${{ github.ref_name }}/ /root/public/ && rm ${{ github.ref_name }}.zip" - - name: Extract PR number - run: echo "PR_NUMBER=$(echo $FORGEJO_REF_NAME | cut -d'/' -f3)" >> $FORGEJO_ENV - - - name: add comment to PR - if: env.PR_NUMBER != '' + - name: Comment on the PR run: | - curl -X POST "https://source.mapcomplete.org/api/v1/repos/${FORGEJO_REPOSITORY}/issues/${PR_NUMBER}/comments" \ + PR_NUMBER=$(echo ${{ github.event.pull_request.number || github.event.issue.number }}) + if [[ -n "$PR_NUMBER" ]] + then + echo "Found a pull request or issue number, will post to $PR_NUMBER ..." + MSG=$(echo "Congratulations! This PR been successfully built and has been deployed. It is (temporarily) available on https://builds.mapcomplete.org/${PR_NUMBER}") + BODY="{\"body\": \"$MSG\"}" + # Token must have following permissions: issue > read and write + curl -X POST "https://source.mapcomplete.org/api/v1/repos/${GITHUB_REPOSITORY}/issues/${PR_NUMBER}/comments" \ -H "Content-Type: application/json" \ -H "Authorization: token $FORGEJO_TOKEN" \ - -d '{"body": "This PR has been deployed and is (temporarily) available on https://builds.mapcomplete.org/${PR_NUMBER}"}' + -d "$BODY" + fi env: FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }} diff --git a/.forgejo/workflows/deploy_single_theme.yml b/.forgejo/workflows/deploy_single_theme.yml index 594baf0d89..89e0acfa8b 100644 --- a/.forgejo/workflows/deploy_single_theme.yml +++ b/.forgejo/workflows/deploy_single_theme.yml @@ -7,10 +7,10 @@ jobs: deploy_single_theme: runs-on: [ ubuntu-latest, hetzner-access ] steps: - - uses: actions/checkout@v3 + - uses: https://source.mapcomplete.org/actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: https://source.mapcomplete.org/actions/setup-node@v4 with: node-version: "20" cache: "npm" diff --git a/.gitignore b/.gitignore index 6c69ad958d..14f62e4687 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,4 @@ dist-full/ public/assets/icons/*.webp uploaded_images.json /app/dist/ +src/assets/bing.json diff --git a/.vscode/settings.json b/.vscode/settings.json index aa73d8edf8..b607ae0fc3 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -53,5 +53,12 @@ "[svelte]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, - "editor.formatOnSave": true + "editor.formatOnSave": true, + "gitlens.remotes": [ + { + "domain": "source.mapcomplete.org", + "type": "Gitea", + "name": "MapComplete Forgejo" + } + ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index 235b0a712e..5e476d26e1 100644 --- a/CHANGELOG.md +++ b/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) diff --git a/Docs/BuiltinIndex.md b/Docs/BuiltinIndex.md index c1c23d8dd8..9f431a055f 100644 --- a/Docs/BuiltinIndex.md +++ b/Docs/BuiltinIndex.md @@ -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.* diff --git a/Docs/Layers/all_vending_machine.md b/Docs/Layers/all_vending_machine.md index 7fd40fddde..84b54371d3 100644 --- a/Docs/Layers/all_vending_machine.md +++ b/Docs/Layers/all_vending_machine.md @@ -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.*)$ diff --git a/Docs/Layers/artwork.md b/Docs/Layers/artwork.md index f68bcfd674..bc8de6b84c 100644 --- a/Docs/Layers/artwork.md +++ b/Docs/Layers/artwork.md @@ -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 ** [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) | | [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | | | [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) | +| [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) | +| [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | | +| [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) | +| [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) | +| [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) | +| [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) | +| [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 historic=memorial + - *This artwork also serves as a memorial* is shown if with historic=memorial - *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 amenity=bench + - *This artwork also serves as a bench* is shown if with amenity=bench - *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?` + + - *This artwork acts as a wayside shrine* is shown if with historic=wayside_shrine + - *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 {name}* is shown if `name` is set + + - *This shrine does not have a name* is shown if with noname=yes + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine +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 religion=christian + - *This is a Buddhist shrine* is shown if with religion=buddhist + - *This is a Hindu shrine* is shown if with religion=hindu + - *This is a Jain shrine* is shown if with religion=jain + - *This is a Jewish shrine* is shown if with religion=jewish + - *This is an Islamic shrine* is shown if with religion=muslim + - *This is a Pagan shrine* is shown if with religion=pagan + - *This is a Shinto shrine* is shown if with religion=shinto + - *This is a Sikh shrine* is shown if with religion=sikh + - *This is a Taoist shrine* is shown if with religion=taoist + - *This is a Zoroastrian shrine* is shown if with religion=zoroastrian + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine +This tagrendering has labels +`shrine_questions` + +### denomination_christian + +The question is `What's the Christian denomination of the shrine?` +*The religious denomination is {denomination}* is shown if `denomination` is set + + - *The religious subdenomination is Catholic* is shown if with denomination=catholic + - *The religious subdenomination is Roman Catholic* is shown if with denomination=roman_catholic + - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox + - *The religious subdenomination is Greek-Orthodox* is shown if with denomination=greek_orthodox + - *The religious subdenomination is Russian-Orthodox* is shown if with denomination=russian_orthodox + - *The religious subdenomination is Serbian Orthodox* is shown if with denomination=serbian_orthodox + - *The religious subdenomination is Protestant* is shown if with denomination=protestant + - *The religious subdenomination is Anglican* is shown if with denomination=anglican + - *The religious subdenomination is Adventist* is shown if with denomination=adventist + - *The religious subdenomination is evangelical* is shown if with denomination=evangelical + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=christian +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 denomination=shia + - *The religious subdenomination is Sunni* is shown if with denomination=sunni + - *The religious subdenomination is Sufi* is shown if with denomination=sufi + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=muslim +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 denomination=conservative + - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox + - *The religious subdenomination is Hasidic* is shown if with denomination=hasidic + - *The religious subdenomination is Reform* is shown if with denomination=reform + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=jewish +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: historic=wayside_shrine & 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_ diff --git a/Docs/Layers/artwork_on_wall.md b/Docs/Layers/artwork_on_wall.md index 3b30dd0b8c..c6a7953cfc 100644 --- a/Docs/Layers/artwork_on_wall.md +++ b/Docs/Layers/artwork_on_wall.md @@ -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: | [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) | | [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | | | [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) | +| [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) | +| [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | | +| [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) | +| [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) | +| [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) | +| [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) | +| [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 historic=memorial + - *This artwork also serves as a memorial* is shown if with historic=memorial - *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 amenity=bench + - *This artwork also serves as a bench* is shown if with amenity=bench - *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?` + + - *This artwork acts as a wayside shrine* is shown if with historic=wayside_shrine + - *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 {name}* is shown if `name` is set + + - *This shrine does not have a name* is shown if with noname=yes + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine +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 religion=christian + - *This is a Buddhist shrine* is shown if with religion=buddhist + - *This is a Hindu shrine* is shown if with religion=hindu + - *This is a Jain shrine* is shown if with religion=jain + - *This is a Jewish shrine* is shown if with religion=jewish + - *This is an Islamic shrine* is shown if with religion=muslim + - *This is a Pagan shrine* is shown if with religion=pagan + - *This is a Shinto shrine* is shown if with religion=shinto + - *This is a Sikh shrine* is shown if with religion=sikh + - *This is a Taoist shrine* is shown if with religion=taoist + - *This is a Zoroastrian shrine* is shown if with religion=zoroastrian + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine +This tagrendering has labels +`shrine_questions` + +### denomination_christian + +The question is `What's the Christian denomination of the shrine?` +*The religious denomination is {denomination}* is shown if `denomination` is set + + - *The religious subdenomination is Catholic* is shown if with denomination=catholic + - *The religious subdenomination is Roman Catholic* is shown if with denomination=roman_catholic + - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox + - *The religious subdenomination is Greek-Orthodox* is shown if with denomination=greek_orthodox + - *The religious subdenomination is Russian-Orthodox* is shown if with denomination=russian_orthodox + - *The religious subdenomination is Serbian Orthodox* is shown if with denomination=serbian_orthodox + - *The religious subdenomination is Protestant* is shown if with denomination=protestant + - *The religious subdenomination is Anglican* is shown if with denomination=anglican + - *The religious subdenomination is Adventist* is shown if with denomination=adventist + - *The religious subdenomination is evangelical* is shown if with denomination=evangelical + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=christian +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 denomination=shia + - *The religious subdenomination is Sunni* is shown if with denomination=sunni + - *The religious subdenomination is Sufi* is shown if with denomination=sufi + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=muslim +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 denomination=conservative + - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox + - *The religious subdenomination is Hasidic* is shown if with denomination=hasidic + - *The religious subdenomination is Reform* is shown if with denomination=reform + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=jewish +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: historic=wayside_shrine & 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_ diff --git a/Docs/Layers/entrance.md b/Docs/Layers/entrance.md index 1e4d4f1e9f..ff9b13fb6f 100644 --- a/Docs/Layers/entrance.md +++ b/Docs/Layers/entrance.md @@ -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: | [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) | | [width](https://wiki.openstreetmap.org/wiki/Key:width) | [pfloat](../SpecialInputElements.md#pfloat) | | | [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) | +| [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 kerb:height=0 +### ref + +The question is `Does this door have a reference number?` +*This door has {ref} 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_ diff --git a/Docs/Layers/group_campsite.md b/Docs/Layers/group_campsite.md index 1a1cac99ea..76d9cc5cc2 100644 --- a/Docs/Layers/group_campsite.md +++ b/Docs/Layers/group_campsite.md @@ -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. tourism=camp_site -1. group_only=yes | scout=yes + - leisure=summer_camp + - tourism=camp_site & (group=yes | group_only=yes | scout=yes | scout=only) & 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 diff --git a/Docs/Layers/group_hostel.md b/Docs/Layers/group_hostel.md index eea98200cc..1a55bd4d3f 100644 --- a/Docs/Layers/group_hostel.md +++ b/Docs/Layers/group_hostel.md @@ -50,9 +50,11 @@ The following options to create new points are included: Elements must match **all** of the following expressions: 0. tourism=hostel -1. group_only=yes | scout=yes +1. group=yes | group_only=yes | scout=yes | scout=only +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 diff --git a/Docs/Layers/indoors.md b/Docs/Layers/indoors.md index fb967d1967..3486a6475a 100644 --- a/Docs/Layers/indoors.md +++ b/Docs/Layers/indoors.md @@ -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: | [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) | | [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) | | [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) | -| [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) | | [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) | +| [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 toilets:handwashing=yes - - *These toilets don't have a sink to wash your hands* is shown if with toilets:handwashing=no - -This tagrendering is only visible in the popup if the following condition is met: amenity=toilets -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 toilets:handwashing=yes + - *These toilets don't have a sink to wash your hands* is shown if with toilets:handwashing=no + +This tagrendering is only visible in the popup if the following condition is met: amenity=toilets +This tagrendering has labels +`relevant-questions` + ### leftover-questions _This tagrendering has no question and is thus read-only_ diff --git a/Docs/Layers/scouting_group.md b/Docs/Layers/scouting_group.md index 187d018e9a..0543f165fa 100644 --- a/Docs/Layers/scouting_group.md +++ b/Docs/Layers/scouting_group.md @@ -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 ** [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | | | [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | | | [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | | +| [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | | | [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) diff --git a/Docs/Layers/toilet.md b/Docs/Layers/toilet.md index 0a02a41967..2c0e8229fc 100644 --- a/Docs/Layers/toilet.md +++ b/Docs/Layers/toilet.md @@ -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 ** [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) | | [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) | | [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) | -| [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) | +| [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) | | [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) | +| [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) | +| [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) | | [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 toilets:handwashing=yes - - *These toilets don't have a sink to wash your hands* is shown if with toilets:handwashing=no - -This tagrendering has labels -`relevant-questions` + - *There is a person supervising these toilets during (most of) the opening hours* is shown if with supervised=yes + - *There is a person supervising these toilets, but they are present only during certain times of the opening hours* is shown if with supervised=interval + - *These toilets are not supervised* is shown if with supervised=no ### 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 toilets:handwashing=yes + - *These toilets don't have a sink to wash your hands* is shown if with toilets:handwashing=no + +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 toilets:hands_drying=electric_hand_dryer + - *Paper towels are available for drying hands.* is shown if with toilets:hands_drying=paper_towel + - *A towel roll cabinet is available for drying hands* is shown if with toilets:hands_drying=towel_cabinet + - *A fabric towel available to dry your hands.* is shown if with toilets:hands_drying=towel + - *There are no hand drying facilities available.* is shown if with toilets:hands_drying=no + +This tagrendering is only visible in the popup if the following condition is met: toilets:handwashing=yes + ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` diff --git a/Docs/Layers/vending_machine.md b/Docs/Layers/vending_machine.md index 67377891d0..7e1a349361 100644 --- a/Docs/Layers/vending_machine.md +++ b/Docs/Layers/vending_machine.md @@ -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.*)$ diff --git a/Docs/Layers/vending_machine_bicycle.md b/Docs/Layers/vending_machine_bicycle.md index de33e9cb85..d7bd3b22de 100644 --- a/Docs/Layers/vending_machine_bicycle.md +++ b/Docs/Layers/vending_machine_bicycle.md @@ -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.*)$ diff --git a/Docs/Layers/walls_and_buildings.md b/Docs/Layers/walls_and_buildings.md index 09e20f1e59..3fcc5496c7 100644 --- a/Docs/Layers/walls_and_buildings.md +++ b/Docs/Layers/walls_and_buildings.md @@ -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-=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_ -*

Entrances

This building has {_entrances_count} entrances:{multi(_entrance_properties_with_width,An entrance 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 _entrances_count=0 - - *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 entrance with the biggest width 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_ diff --git a/Docs/Layers/wayside_shrine.md b/Docs/Layers/wayside_shrine.md new file mode 100644 index 0000000000..8fa9117819 --- /dev/null +++ b/Docs/Layers/wayside_shrine.md @@ -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:historic=wayside_shrine + - **a wayside shrine mounted on a wall** which has the following tags:historic=wayside_shrine (snaps to layers `walls_and_buildings`) + +## Basic tags for this layer + +Elements must match the expression **historic=wayside_shrine** + +[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 | +-----|-----|----- | +| [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | | +| [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) | +| [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) | +| [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) | +| [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) | +| [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | | +| [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 {name}* is shown if `name` is set + + - *This shrine does not have a name* is shown if with noname=yes + +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 religion=christian + - *This is a Buddhist shrine* is shown if with religion=buddhist + - *This is a Hindu shrine* is shown if with religion=hindu + - *This is a Jain shrine* is shown if with religion=jain + - *This is a Jewish shrine* is shown if with religion=jewish + - *This is an Islamic shrine* is shown if with religion=muslim + - *This is a Pagan shrine* is shown if with religion=pagan + - *This is a Shinto shrine* is shown if with religion=shinto + - *This is a Sikh shrine* is shown if with religion=sikh + - *This is a Taoist shrine* is shown if with religion=taoist + - *This is a Zoroastrian shrine* is shown if with religion=zoroastrian + +This tagrendering has labels +`shrine_questions` + +### denomination_christian + +The question is `What's the Christian denomination of the shrine?` +*The religious denomination is {denomination}* is shown if `denomination` is set + + - *The religious subdenomination is Catholic* is shown if with denomination=catholic + - *The religious subdenomination is Roman Catholic* is shown if with denomination=roman_catholic + - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox + - *The religious subdenomination is Greek-Orthodox* is shown if with denomination=greek_orthodox + - *The religious subdenomination is Russian-Orthodox* is shown if with denomination=russian_orthodox + - *The religious subdenomination is Serbian Orthodox* is shown if with denomination=serbian_orthodox + - *The religious subdenomination is Protestant* is shown if with denomination=protestant + - *The religious subdenomination is Anglican* is shown if with denomination=anglican + - *The religious subdenomination is Adventist* is shown if with denomination=adventist + - *The religious subdenomination is evangelical* is shown if with denomination=evangelical + +This tagrendering is only visible in the popup if the following condition is met: religion=christian +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 denomination=shia + - *The religious subdenomination is Sunni* is shown if with denomination=sunni + - *The religious subdenomination is Sufi* is shown if with denomination=sufi + +This tagrendering is only visible in the popup if the following condition is met: religion=muslim +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 denomination=conservative + - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox + - *The religious subdenomination is Hasidic* is shown if with denomination=hasidic + - *The religious subdenomination is Reform* is shown if with denomination=reform + +This tagrendering is only visible in the popup if the following condition is met: religion=jewish +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 location=underground. _This option cannot be chosen as answer_ + - *Located on the ground floor* is shown if with level=0 + - *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 level=1 + - *Located on the first basement level* is shown if with level=-1 + +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) diff --git a/Docs/SpecialRenderings.md b/Docs/SpecialRenderings.md index 5652d849f0..7de46df1d7 100644 --- a/Docs/SpecialRenderings.md +++ b/Docs/SpecialRenderings.md @@ -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 diff --git a/Docs/TagInfo/mapcomplete_advertising.json b/Docs/TagInfo/mapcomplete_advertising.json index 9974be9299..acb2b82ccb 100644 --- a/Docs/TagInfo/mapcomplete_advertising.json +++ b/Docs/TagInfo/mapcomplete_advertising.json @@ -7,311 +7,402 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/advertising/icon.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "advertising", - "description": "The MapComplete theme Advertising has a layer Advertisement showing features with this tag" + "description": "Features with this tag are displayed by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "id", - "description": "Layer 'Advertisement' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Advertising') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Advertisement, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "panoramax", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "mapillary", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "wikidata", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "wikipedia", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows and asks freeform values for key 'advertising' (in the mapcomplete.org theme 'Advertising')" + "description": "Values of `advertising` are shown with \"This is a {advertising}\" and can be updated. The question is \"Which type of advertising feature is this?\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=billboard with a fixed text, namely 'This is a billboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "billboard" + "value": "billboard", + "description": "advertising=billboard is displayed as \"This is a billboard\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/billboard.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=board with a fixed text, namely 'This is a board' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "board" + "value": "board", + "description": "advertising=board is displayed as \"This is a board\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/board.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=column with a fixed text, namely 'This is a column' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "column" + "value": "column", + "description": "advertising=column is displayed as \"This is a column\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/column.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=flag with a fixed text, namely 'This is a flag' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "flag" + "value": "flag", + "description": "advertising=flag is displayed as \"This is a flag\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/flag.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=poster_box with a fixed text, namely 'This is a poster Box' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "poster_box" + "value": "poster_box", + "description": "advertising=poster_box is displayed as \"This is a poster Box\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/poster_box.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=screen with a fixed text, namely 'This is a screen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "screen" + "value": "screen", + "description": "advertising=screen is displayed as \"This is a screen\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/screen.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=sculpture with a fixed text, namely 'This is a sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "sculpture" + "value": "sculpture", + "description": "advertising=sculpture is displayed as \"This is a sculpture\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/sculpture.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=sign with a fixed text, namely 'This is a sign' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "sign" + "value": "sign", + "description": "advertising=sign is displayed as \"This is a sign\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=tarp with a fixed text, namely 'This is a tarp (a weatherproof piece of textile with an advertising message)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "tarp" + "value": "tarp", + "description": "advertising=tarp is displayed as \"This is a tarp (a weatherproof piece of textile with an advertising message)\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/tarp.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=totem with a fixed text, namely 'This is a totem' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "totem" + "value": "totem", + "description": "advertising=totem is displayed as \"This is a totem\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/totem.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=wall_painting with a fixed text, namely 'This is a wall painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "wall_painting" + "value": "wall_painting", + "description": "advertising=wall_painting is displayed as \"This is a wall painting\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=tilework with a fixed text, namely 'This is tilework - the advertisement is painted on tiles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "tilework" + "value": "tilework", + "description": "advertising=tilework is displayed as \"This is tilework - the advertisement is painted on tiles\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=relief with a fixed text, namely 'This is a relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "relief" + "value": "relief", + "description": "advertising=relief is displayed as \"This is a relief\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=no with a fixed text, namely 'Static, always shows the same message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "no" + "value": "no", + "description": "animated=no is displayed as \"Static, always shows the same message\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=digital_display with a fixed text, namely 'This object has a built-in digital display to show prices or some other message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "digital_display" + "value": "digital_display", + "description": "animated=digital_display is displayed as \"This object has a built-in digital display to show prices or some other message\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=trivision_blades with a fixed text, namely 'Trivision - the billboard consists of many triangular prisms which regularly rotate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "trivision_blades" + "value": "trivision_blades", + "description": "animated=trivision_blades is displayed as \"Trivision - the billboard consists of many triangular prisms which regularly rotate\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated", + "icon_url": "./assets/themes/advertising/trivision.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=winding_posters with a fixed text, namely 'Scrolling posters' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "winding_posters" + "value": "winding_posters", + "description": "animated=winding_posters is displayed as \"Scrolling posters\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=revolving with a fixed text, namely 'Rotates on itself' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "revolving" + "value": "revolving", + "description": "animated=revolving is displayed as \"Rotates on itself\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "luminous", - "description": "Layer 'Advertisement' shows luminous=neon with a fixed text, namely 'This is a neon-tube light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)", - "value": "neon" + "value": "neon", + "description": "luminous=neon is displayed as \"This is a neon-tube light\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "lit", - "description": "Layer 'Advertisement' shows lit=yes & luminous=yes with a fixed text, namely 'This object both emits light and is lighted by an external light source' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)", - "value": "yes" + "value": "yes", + "description": "lit=yes & luminous=yes is displayed as \"This object both emits light and is lighted by an external light source\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "luminous", - "description": "Layer 'Advertisement' shows lit=yes & luminous=yes with a fixed text, namely 'This object both emits light and is lighted by an external light source' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)", - "value": "yes" + "value": "yes", + "description": "lit=yes & luminous=yes is displayed as \"This object both emits light and is lighted by an external light source\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "luminous", - "description": "Layer 'Advertisement' shows luminous=yes with a fixed text, namely 'This object emits light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)", - "value": "yes" + "value": "yes", + "description": "luminous=yes is displayed as \"This object emits light\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "lit", - "description": "Layer 'Advertisement' shows lit=yes with a fixed text, namely 'This object is lit externally, e.g. by a spotlight or other lights' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This object is lit externally, e.g. by a spotlight or other lights\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "lit", - "description": "Layer 'Advertisement' shows lit=no & luminous=no with a fixed text, namely 'This object does not emit light and is not lighted by externally' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)", - "value": "no" + "value": "no", + "description": "lit=no & luminous=no is displayed as \"This object does not emit light and is not lighted by externally\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "luminous", - "description": "Layer 'Advertisement' shows lit=no & luminous=no with a fixed text, namely 'This object does not emit light and is not lighted by externally' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)", - "value": "no" + "value": "no", + "description": "lit=no & luminous=no is displayed as \"This object does not emit light and is not lighted by externally\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "operator", - "description": "Layer 'Advertisement' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Advertising')" + "description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who operates this feature?\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#operator", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=commercial with a fixed text, namely 'Commercial message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "commercial" + "value": "commercial", + "description": "message=commercial is displayed as \"Commercial message\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=local with a fixed text, namely 'Local information' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "local" + "value": "local", + "description": "message=local is displayed as \"Local information\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=safety with a fixed text, namely 'Security information' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "safety" + "value": "safety", + "description": "message=safety is displayed as \"Security information\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=political with a fixed text, namely 'Electoral advertising' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "political" + "value": "political", + "description": "message=political is displayed as \"Electoral advertising\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=showbiz with a fixed text, namely 'Information related to theatre, concerts, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "showbiz" + "value": "showbiz", + "description": "message=showbiz is displayed as \"Information related to theatre, concerts, …\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=non_profit with a fixed text, namely 'Message from non-profit organizations' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "non_profit" + "value": "non_profit", + "description": "message=non_profit is displayed as \"Message from non-profit organizations\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=opinion with a fixed text, namely 'To express your opinion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "opinion" + "value": "opinion", + "description": "message=opinion is displayed as \"To express your opinion\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=religion with a fixed text, namely 'Religious message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "religion" + "value": "religion", + "description": "message=religion is displayed as \"Religious message\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=funding with a fixed text, namely 'Funding sign' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "funding" + "value": "funding", + "description": "message=funding is displayed as \"Funding sign\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "information", - "description": "Layer 'Advertisement' shows information=map with a fixed text, namely 'A map' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "map" + "value": "map", + "description": "information=map is displayed as \"A map\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "sides", - "description": "Layer 'Advertisement' shows sides=1 with a fixed text, namely 'This object has advertisements on a single side' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if _referencing_ways= & (advertising=poster_box | advertising=screen | advertising=billboard))", - "value": "1" + "value": "1", + "description": "sides=1 is displayed as \"This object has advertisements on a single side\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#Sides", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "sides", - "description": "Layer 'Advertisement' shows sides=2 with a fixed text, namely 'This object has advertisements on both sides' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if _referencing_ways= & (advertising=poster_box | advertising=screen | advertising=billboard))", - "value": "2" + "value": "2", + "description": "sides=2 is displayed as \"This object has advertisements on both sides\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#Sides", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "ref", - "description": "Layer 'Advertisement' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=sign)" + "description": "Values of `ref` are shown with \"Reference number is {ref}\" and can be updated. The question is \"Wich is the reference number?\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#ref", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "historic", - "description": "Layer 'Advertisement' shows historic=advertising with a fixed text, namely 'This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "advertising" + "value": "advertising", + "description": "historic=advertising is displayed as \"This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#historic", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "historic", - "description": "Layer 'Advertisement' shows historic= with a fixed text, namely 'This advertisement sign has no historic value (the business still exists and has no heritage value)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') Picking this answer will delete the key historic.", - "value": "" + "description": "historic= is displayed as \"This advertisement sign has no historic value (the business still exists and has no heritage value)\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#historic", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "amenity", - "description": "The MapComplete theme Advertising has a layer Shelter showing features with this tag", - "value": "shelter" - }, - { - "key": "id", - "description": "Layer 'Shelter' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Advertising') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "shelter", + "description": "Features with this tag are displayed by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "Layer 'Shelter' shows and asks freeform values for key 'shelter_type' (in the mapcomplete.org theme 'Advertising')" + "description": "Values of `shelter_type` are shown with \"Shelter type: {shelter_type}\" and can be updated. The question is \"What kind of shelter is this?\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=public_transport with a fixed text, namely 'This is a shelter at a public transport stop.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "public_transport" + "value": "public_transport", + "description": "shelter_type=public_transport is displayed as \"This is a shelter at a public transport stop.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=picnic_shelter with a fixed text, namely 'This is a shelter protecting from rain at a picnic site.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "picnic_shelter" + "value": "picnic_shelter", + "description": "shelter_type=picnic_shelter is displayed as \"This is a shelter protecting from rain at a picnic site.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=gazebo with a fixed text, namely 'This is a gazebo.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "gazebo" + "value": "gazebo", + "description": "shelter_type=gazebo is displayed as \"This is a gazebo.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=weather_shelter with a fixed text, namely 'This is a small shelter, primarily intended for short breaks. Usually found in the mountains or alongside roads.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "weather_shelter" + "value": "weather_shelter", + "description": "shelter_type=weather_shelter is displayed as \"This is a small shelter, primarily intended for short breaks. Usually found in the mountains or alongside roads.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=lean_to with a fixed text, namely 'This is a shed with 3 walls, primarily intended for camping.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "lean_to" + "value": "lean_to", + "description": "shelter_type=lean_to is displayed as \"This is a shed with 3 walls, primarily intended for camping.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=pavilion with a fixed text, namely 'This is a pavilion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "pavilion" + "value": "pavilion", + "description": "shelter_type=pavilion is displayed as \"This is a pavilion\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=basic_hut with a fixed text, namely 'This is a basic hut, providing basic shelter and sleeping facilities.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')", - "value": "basic_hut" + "value": "basic_hut", + "description": "shelter_type=basic_hut is displayed as \"This is a basic hut, providing basic shelter and sleeping facilities.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_aed.json b/Docs/TagInfo/mapcomplete_aed.json index d57a9b2ef0..1f4943ece2 100644 --- a/Docs/TagInfo/mapcomplete_aed.json +++ b/Docs/TagInfo/mapcomplete_aed.json @@ -7,170 +7,241 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/aed/aed.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "emergency", - "description": "The MapComplete theme Defibrillators has a layer Defibrillators showing features with this tag", - "value": "defibrillator" + "value": "defibrillator", + "description": "Features with this tag are displayed by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "id", - "description": "Layer 'Defibrillators' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Defibrillators') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "panoramax", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "mapillary", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wikidata", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wikipedia", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "indoor", - "description": "Layer 'Defibrillators' shows indoor=yes with a fixed text, namely 'This defibrillator is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This defibrillator is located indoors\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_indoors", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "indoor", - "description": "Layer 'Defibrillators' shows indoor=no with a fixed text, namely 'This defibrillator is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This defibrillator is located outdoors\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_indoors", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Is this defibrillator freely accessible?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Publicly accessible\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=public with a fixed text, namely 'Publicly accessible' (in the mapcomplete.org theme 'Defibrillators')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Publicly accessible\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=customers with a fixed text, namely 'Only accessible to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only accessible to customers\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accesible to staff, the owners, …)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Not accessible to the general public (e.g. only accesible to staff, the owners, …)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=no with a fixed text, namely 'Not accessible, possibly only for professional use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible, possibly only for professional use\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "level", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Defibrillators') (This is only shown if indoor=yes)" + "description": "Values of `level` are shown with \"This defibrillator is on floor {level}\" and can be updated. The question is \"On which floor is this defibrillator located?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "level", - "description": "Layer 'Defibrillators' shows level=0 with a fixed text, namely 'This defibrillator is on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators') (This is only shown if indoor=yes)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"This defibrillator is on the ground floor\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "level", - "description": "Layer 'Defibrillators' shows level=1 with a fixed text, namely 'This defibrillator is on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators') (This is only shown if indoor=yes)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"This defibrillator is on the first floor\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "defibrillator:location", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `defibrillator:location` are shown with \"Extra information about the location (in the local language):
{defibrillator:location}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in the local language)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "defibrillator:location:en", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:en' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `defibrillator:location:en` are shown with \"Extra information about the location (in English):
{defibrillator:location:en}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in English)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location_en", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "defibrillator:location:fr", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:fr' (in the mapcomplete.org theme 'Defibrillators') (This is only shown if _country=be | defibrillator:location:fr~.+)" + "description": "Values of `defibrillator:location:fr` are shown with \"Extra information about the location (in French):
{defibrillator:location:fr}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in French)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location_fr", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wheelchair", - "description": "Layer 'Defibrillators' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wheelchair", - "description": "Layer 'Defibrillators' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wheelchair", - "description": "Layer 'Defibrillators' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wheelchair", - "description": "Layer 'Defibrillators' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "ref", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `ref` are shown with \"Official identification number of the device: {ref}\" and can be updated. The question is \"What is the official identification number of the device? (if visible on device)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_ref", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "email", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `email` are shown with \"Email for questions about this defibrillator: {email}\" and can be updated. The question is \"What is the email for questions about this defibrillator?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_email", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "phone", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `phone` are shown with \"Telephone for questions about this defibrillator: {phone}\" and can be updated. The question is \"What is the phone number for questions about this defibrillator?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_phone", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "opening_hours", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"At what times is this defibrillator available?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "opening_hours", - "description": "Layer 'Defibrillators' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Defibrillators' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Defibrillators')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "opening_hours", - "description": "Layer 'Defibrillators' shows opening_hours=unknown with a fixed text, namely 'Not accessible 24/7, but the exact hours are unknown' (in the mapcomplete.org theme 'Defibrillators')", - "value": "unknown" + "value": "unknown", + "description": "opening_hours=unknown is displayed as \"Not accessible 24/7, but the exact hours are unknown\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "description", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `description` are shown with \"Additional information: {description}\" and can be updated. The question is \"Is there any useful information for users that you haven't been able to describe above? (leave blank if no)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_description", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "survey:date", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `survey:date` are shown with \"This defibrillator was last surveyed on {survey:date}\" and can be updated. The question is \"When was this defibrillator last surveyed?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_survey_date", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "survey:date", - "description": "Layer 'Defibrillators' shows survey:date= with a fixed text, namely 'Checked today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators') Picking this answer will delete the key survey:date.", - "value": "" + "description": "survey:date= is displayed as \"Checked today!\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_survey_date", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "fixme", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Defibrillators')" + "description": "Values of `fixme` are shown with \"Extra information for OpenStreetMap experts: {fixme}\" and can be updated. The question is \"Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_fixme", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_architecture.json b/Docs/TagInfo/mapcomplete_architecture.json index bfbb37c083..d31cf6a4dd 100644 --- a/Docs/TagInfo/mapcomplete_architecture.json +++ b/Docs/TagInfo/mapcomplete_architecture.json @@ -7,235 +7,325 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/architecture/architecture.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "building", - "description": "The MapComplete theme Buildings with an architectural style has a layer Buildings showing features with this tag" + "description": "Features with this tag are displayed by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "The MapComplete theme Buildings with an architectural style has a layer Buildings showing features with this tag" + "description": "Features with this tag are displayed by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md", + "icon_url": "circle" }, { "key": "id", - "description": "Layer 'Buildings' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Buildings with an architectural style') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows and asks freeform values for key 'building:architecture' (in the mapcomplete.org theme 'Buildings with an architectural style')" + "description": "Values of `building:architecture` are shown with \"{building:architecture}\" and can be updated. The question is \"What is the architectural style of this building?\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=islamic with a fixed text, namely 'Islamic architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "islamic" + "value": "islamic", + "description": "building:architecture=islamic is displayed as \"Islamic architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=mamluk with a fixed text, namely 'Mamluk architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "mamluk" + "value": "mamluk", + "description": "building:architecture=mamluk is displayed as \"Mamluk architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=romanesque with a fixed text, namely 'Romanesque architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "romanesque" + "value": "romanesque", + "description": "building:architecture=romanesque is displayed as \"Romanesque architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=gothic with a fixed text, namely 'Gothic architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "gothic" + "value": "gothic", + "description": "building:architecture=gothic is displayed as \"Gothic architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=renaissance with a fixed text, namely 'Renaissance architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "renaissance" + "value": "renaissance", + "description": "building:architecture=renaissance is displayed as \"Renaissance architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=mannerism with a fixed text, namely 'Mannerism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "mannerism" + "value": "mannerism", + "description": "building:architecture=mannerism is displayed as \"Mannerism\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=ottoman with a fixed text, namely 'Ottoman architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "ottoman" + "value": "ottoman", + "description": "building:architecture=ottoman is displayed as \"Ottoman architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=baroque with a fixed text, namely 'Baroque architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "baroque" + "value": "baroque", + "description": "building:architecture=baroque is displayed as \"Baroque architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=rococo with a fixed text, namely 'Rococo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "rococo" + "value": "rococo", + "description": "building:architecture=rococo is displayed as \"Rococo\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=empire with a fixed text, namely 'Empire style' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "empire" + "value": "empire", + "description": "building:architecture=empire is displayed as \"Empire style\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=moorish revival with a fixed text, namely 'Moorish Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "moorish revival" + "value": "moorish revival", + "description": "building:architecture=moorish revival is displayed as \"Moorish Revival\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=neoclassicism with a fixed text, namely 'Neoclassical architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "neoclassicism" + "value": "neoclassicism", + "description": "building:architecture=neoclassicism is displayed as \"Neoclassical architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=georgian with a fixed text, namely 'Georgian architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "georgian" + "value": "georgian", + "description": "building:architecture=georgian is displayed as \"Georgian architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=victorian with a fixed text, namely 'Victorian architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "victorian" + "value": "victorian", + "description": "building:architecture=victorian is displayed as \"Victorian architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=historicism with a fixed text, namely 'Historicism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "historicism" + "value": "historicism", + "description": "building:architecture=historicism is displayed as \"Historicism\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=neo-romanesque with a fixed text, namely 'Romanesque Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "neo-romanesque" + "value": "neo-romanesque", + "description": "building:architecture=neo-romanesque is displayed as \"Romanesque Revival\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=neo-byzantine with a fixed text, namely 'Byzantine Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "neo-byzantine" + "value": "neo-byzantine", + "description": "building:architecture=neo-byzantine is displayed as \"Byzantine Revival\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=neo-gothic with a fixed text, namely 'Gothic Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "neo-gothic" + "value": "neo-gothic", + "description": "building:architecture=neo-gothic is displayed as \"Gothic Revival\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=neo-renaissance with a fixed text, namely 'Renaissance Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "neo-renaissance" + "value": "neo-renaissance", + "description": "building:architecture=neo-renaissance is displayed as \"Renaissance Revival\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=neo-baroque with a fixed text, namely 'Baroque Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "neo-baroque" + "value": "neo-baroque", + "description": "building:architecture=neo-baroque is displayed as \"Baroque Revival\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=art_nouveau with a fixed text, namely 'Art Nouveau' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "art_nouveau" + "value": "art_nouveau", + "description": "building:architecture=art_nouveau is displayed as \"Art Nouveau\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=eclectic with a fixed text, namely 'Eclecticism in architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "eclectic" + "value": "eclectic", + "description": "building:architecture=eclectic is displayed as \"Eclecticism in architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=functionalism with a fixed text, namely 'Functionalism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "functionalism" + "value": "functionalism", + "description": "building:architecture=functionalism is displayed as \"Functionalism\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=cubism with a fixed text, namely 'Cubism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "cubism" + "value": "cubism", + "description": "building:architecture=cubism is displayed as \"Cubism\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=new_objectivity with a fixed text, namely 'New Objectivity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "new_objectivity" + "value": "new_objectivity", + "description": "building:architecture=new_objectivity is displayed as \"New Objectivity\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=art_deco with a fixed text, namely 'Art Deco' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "art_deco" + "value": "art_deco", + "description": "building:architecture=art_deco is displayed as \"Art Deco\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=modern with a fixed text, namely 'Modern architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "modern" + "value": "modern", + "description": "building:architecture=modern is displayed as \"Modern architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=amsterdam_school with a fixed text, namely 'Amsterdam School' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "amsterdam_school" + "value": "amsterdam_school", + "description": "building:architecture=amsterdam_school is displayed as \"Amsterdam School\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=international_style with a fixed text, namely 'International Style' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "international_style" + "value": "international_style", + "description": "building:architecture=international_style is displayed as \"International Style\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=constructivism with a fixed text, namely 'Constructivism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "constructivism" + "value": "constructivism", + "description": "building:architecture=constructivism is displayed as \"Constructivism\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=stalinist_neoclassicism with a fixed text, namely 'Stalinist architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "stalinist_neoclassicism" + "value": "stalinist_neoclassicism", + "description": "building:architecture=stalinist_neoclassicism is displayed as \"Stalinist architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=brutalist with a fixed text, namely 'Brutalist architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "brutalist" + "value": "brutalist", + "description": "building:architecture=brutalist is displayed as \"Brutalist architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=postmodern with a fixed text, namely 'Postmodern architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "postmodern" + "value": "postmodern", + "description": "building:architecture=postmodern is displayed as \"Postmodern architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "building:architecture", - "description": "Layer 'Buildings' shows building:architecture=contemporary with a fixed text, namely 'Contemporary architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "contemporary" + "value": "contemporary", + "description": "building:architecture=contemporary is displayed as \"Contemporary architecture\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture", + "icon_url": "circle" }, { "key": "construction_date", - "description": "Layer 'Buildings' shows and asks freeform values for key 'construction_date' (in the mapcomplete.org theme 'Buildings with an architectural style')" + "description": "Values of `construction_date` are shown with \"Built in {construction_date}\" and can be updated. The question is \"When was this built?\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#construction_date", + "icon_url": "circle" }, { "key": "addr:street", - "description": "Layer 'Buildings' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#header", + "icon_url": "circle" }, { "key": "addr:unit", - "description": "Layer 'Buildings' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#header", + "icon_url": "circle" }, { "key": "addr:housenumber", - "description": "Layer 'Buildings' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#header", + "icon_url": "circle" }, { "key": "addr:housenumber", - "description": "Layer 'Buildings' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Buildings with an architectural style')" + "description": "Values of `addr:housenumber` are shown with \"The house number is {addr:housenumber}\" and can be updated. The question is \"What is the number of this house?\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#housenumber", + "icon_url": "circle" }, { "key": "nohousenumber", - "description": "Layer 'Buildings' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')", - "value": "yes" + "value": "yes", + "description": "nohousenumber=yes is displayed as \"This building has no house number\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#housenumber", + "icon_url": "circle" }, { "key": "addr:street", - "description": "Layer 'Buildings' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Buildings with an architectural style') (This is only shown if nohousenumber!~^(yes)$)" + "description": "Values of `addr:street` are shown with \"This address is in street {addr:street}\" and can be updated. The question is \"What street is this address located in?\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#street", + "icon_url": "circle" }, { "key": "addr:unit", - "description": "Layer 'Buildings' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Buildings with an architectural style')" + "description": "Values of `addr:unit` are shown with \"The unit number is {addr:unit}\" and can be updated. The question is \"What is the unit number or letter?\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#unit", + "icon_url": "circle" }, { "key": "addr:unit", - "description": "Layer 'Buildings' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style') Picking this answer will delete the key addr:unit.", - "value": "" + "description": "addr:unit= is displayed as \"No unit number\" by layer Buildings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#unit", + "icon_url": "circle" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_artwork.json b/Docs/TagInfo/mapcomplete_artwork.json index 094e14b74f..586ca1b338 100644 --- a/Docs/TagInfo/mapcomplete_artwork.json +++ b/Docs/TagInfo/mapcomplete_artwork.json @@ -7,982 +7,865 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/artwork/artwork.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "tourism", - "description": "The MapComplete theme Artwork has a layer Artworks showing features with this tag", - "value": "artwork" + "value": "artwork", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "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 'Artwork') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "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" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#images", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#images", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#images", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#images", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#images", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "description": "Layer 'Artworks' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Artwork')" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "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 'Artwork')", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Artworks' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Artwork')" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artist_wikidata", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artist_name", - "description": "Layer 'Artworks' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Artwork') (This is only shown if artist:wikidata=)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artist_name", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "website", - "description": "Layer 'Artworks' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Artwork')" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_website", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "wikidata", - "description": "Layer 'Artworks' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Artwork')" + "description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "wikipedia", - "description": "Layer 'Artworks' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Artwork')" + "description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "wikidata", - "description": "Layer 'Artworks' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key wikidata.", - "value": "" + "description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Artworks' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Artwork') (This is only shown if subject:wikidata~.+)" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layers Artworks, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_subject", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "historic", - "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 'Artwork')", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This artwork also serves as a memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_memorial", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "historic", - "description": "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 'Artwork') Picking this answer will delete the key historic.", - "value": "" + "description": "historic= is displayed as \"This artwork does not serve as a memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "description": "Layer 'Artworks' shows and asks freeform values for key 'memorial' (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=memorial)" + "description": "Values of `memorial` are shown with \"This is a {memorial}\" and can be updated. The question is \"What type of memorial is this?\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "statue" + "value": "statue", + "description": "memorial=statue is displayed as \"This is a statue\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "plaque" + "value": "plaque", + "description": "memorial=plaque is displayed as \"This is a plaque\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "bench" + "value": "bench", + "description": "memorial=bench is displayed as \"This is a commemorative bench\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "ghost_bike" + "value": "ghost_bike", + "description": "memorial=ghost_bike is displayed as \"This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "stolperstein" + "value": "stolperstein", + "description": "memorial=stolperstein is displayed as \"This is a stolperstein (stumbing stone)\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "stele" + "value": "stele", + "description": "memorial=stele is displayed as \"This is a stele\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "stone" + "value": "stone", + "description": "memorial=stone is displayed as \"This is a memorial stone\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "bust" + "value": "bust", + "description": "memorial=bust is displayed as \"This is a bust\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "sculpture" + "value": "sculpture", + "description": "memorial=sculpture is displayed as \"This is a sculpture\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "obelisk" + "value": "obelisk", + "description": "memorial=obelisk is displayed as \"This is an obelisk\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "cross" + "value": "cross", + "description": "memorial=cross is displayed as \"This is a cross\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "blue_plaque" + "value": "blue_plaque", + "description": "memorial=blue_plaque is displayed as \"This is a blue plaque\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "tank" + "value": "tank", + "description": "memorial=tank is displayed as \"This is a historic tank, permanently placed in public space as memorial\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "tree" + "value": "tree", + "description": "memorial=tree is displayed as \"This is a memorial tree\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "historic", - "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 'Artwork') (This is only shown if historic=memorial)", - "value": "tomb" + "value": "tomb", + "description": "historic=tomb is displayed as \"This is a gravestone; the person is buried here\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "inscription", - "description": "Layer 'Artworks' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Artwork') (This is only shown if memorial!=bench & historic=memorial)" + "description": "Values of `inscription` are shown with \"The inscription on this memorial reads:

{inscription}

\" and can be updated. The question is \"What is the inscription on this memorial?\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "not:inscription", - "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 'Artwork') (This is only shown if memorial!=bench & historic=memorial)", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This memorial does not have an inscription\" by layers Artworks, Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "amenity", - "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 'Artwork')", - "value": "bench" + "value": "bench", + "description": "amenity=bench is displayed as \"This artwork also serves as a bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_bench", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "amenity", - "description": "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 'Artwork') Picking this answer will delete the key amenity.", - "value": "" + "description": "amenity= is displayed as \"This artwork does not serve as a bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_bench", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "backrest", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "two_sided", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "backrest", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes is displayed as \"This bench does have a backrest\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest", + "icon_url": "./assets/layers/bench/one_sided.svg" }, { "key": "backrest", - "description": "Layer 'Artworks' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "backrest=no is displayed as \"This bench does not have a backrest\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest", + "icon_url": "./assets/layers/bench/no_backrest.svg" }, { "key": "armrest", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_armrest", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "armrest", - "description": "Layer 'Artworks' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "armrest=no is displayed as \"This bench does not have any armrests\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_armrest", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "seats", - "description": "Layer 'Artworks' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" + "description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_seats", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "seats:separated", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_seats", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "material", - "description": "Layer 'Artworks' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" + "description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "material", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"The seating is made from wood\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "material", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"The seating is made from metal\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "material", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "stone" + "value": "stone", + "description": "material=stone is displayed as \"The seating is made from stone\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "material", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"The seating is made from concrete\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "material", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"The seating is made from plastic\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "material", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "steel" + "value": "steel", + "description": "material=steel is displayed as \"The seating is made from steel\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "direction", - "description": "Layer 'Artworks' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Artwork') (This is only shown if two_sided!=yes & amenity=bench)" + "description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_direction", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "description": "Layer 'Artworks' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" + "description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "brown" + "value": "brown", + "description": "colour=brown is displayed as \"Colour: brown\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "green" + "value": "green", + "description": "colour=green is displayed as \"Colour: green\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "gray" + "value": "gray", + "description": "colour=gray is displayed as \"Colour: gray\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "white" + "value": "white", + "description": "colour=white is displayed as \"Colour: white\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "red" + "value": "red", + "description": "colour=red is displayed as \"Colour: red\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "black" + "value": "black", + "description": "colour=black is displayed as \"Colour: black\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "blue" + "value": "blue", + "description": "colour=blue is displayed as \"Colour: blue\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "yellow" + "value": "yellow", + "description": "colour=yellow is displayed as \"Colour: yellow\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "survey:date", - "description": "Layer 'Artworks' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" + "description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_survey_date", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "survey:date", - "description": "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 'Artwork') Picking this answer will delete the key survey:date. (This is only shown if amenity=bench)", - "value": "" + "description": "survey:date= is displayed as \"Surveyed today!\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_survey_date", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "inscription", - "description": "Layer 'Artworks' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" + "description": "Values of `inscription` are shown with \"This bench has the following inscription:

{inscription}

\" and can be updated. The question is \"Does this bench have an inscription?\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "not:inscription", - "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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "inscription", - "description": "Layer 'Artworks' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key inscription. (This is only shown if amenity=bench)", - "value": "" + "description": "inscription= is displayed as \"This bench probably does not not have an inscription\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "historic", - "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 'Artwork') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "historic", - "description": "Layer 'Artworks' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)", - "value": "" + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "not:historic", - "description": "Layer 'Artworks' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not 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": "memorial", - "description": "The MapComplete theme Artwork has a layer Memorials showing features with this tag" + "value": "memorial", + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layers Artworks, Memorials, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "historic", - "description": "The MapComplete theme Artwork has a layer Memorials showing features with this tag", - "value": "memorial" - }, - { - "key": "id", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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": "memorial", - "description": "Layer 'Memorials' shows and asks freeform values for key 'memorial' (in the mapcomplete.org theme 'Artwork')" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "statue" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "plaque" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "bench" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "ghost_bike" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "stolperstein" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "stele" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "stone" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "bust" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "sculpture" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "obelisk" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "cross" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "blue_plaque" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "tank" - }, - { - "key": "memorial", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "tree" + "value": "wayside_shrine", + "description": "historic=wayside_shrine is displayed as \"This artwork acts as a wayside shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_wayside_shrine", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" }, { "key": "historic", - "description": "Layer 'Memorials' 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 'Artwork')", - "value": "tomb" + "description": "historic= is displayed as \"This artwork does not act as a wayside shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_wayside_shrine", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { - "key": "inscription", - "description": "Layer 'Memorials' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Artwork') (This is only shown if memorial!=bench)" + "key": "name", + "description": "Values of `name` are shown with \"The name of this shrine is {name}\" and can be updated. The question is \"What's the name of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#shrine_name", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { - "key": "not:inscription", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if memorial!=bench)", - "value": "yes" + "key": "noname", + "value": "yes", + "description": "noname=yes is displayed as \"This shrine does not have a name\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#shrine_name", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "description": "Values of `religion` are shown with \"This shrine is {religion}\" and can be updated. The question is \"To which religion is this shrine dedicated?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "christian", + "description": "religion=christian is displayed as \"This is a Christian shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "buddhist", + "description": "religion=buddhist is displayed as \"This is a Buddhist shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "hindu", + "description": "religion=hindu is displayed as \"This is a Hindu shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "jain", + "description": "religion=jain is displayed as \"This is a Jain shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "jewish", + "description": "religion=jewish is displayed as \"This is a Jewish shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "muslim", + "description": "religion=muslim is displayed as \"This is an Islamic shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "pagan", + "description": "religion=pagan is displayed as \"This is a Pagan shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "shinto", + "description": "religion=shinto is displayed as \"This is a Shinto shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "sikh", + "description": "religion=sikh is displayed as \"This is a Sikh shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "taoist", + "description": "religion=taoist is displayed as \"This is a Taoist shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "zoroastrian", + "description": "religion=zoroastrian is displayed as \"This is a Zoroastrian shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious denomination is {denomination}\" and can be updated. The question is \"What's the Christian denomination of the shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "catholic", + "description": "denomination=catholic is displayed as \"The religious subdenomination is Catholic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "roman_catholic", + "description": "denomination=roman_catholic is displayed as \"The religious subdenomination is Roman Catholic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "orthodox", + "description": "denomination=orthodox is displayed as \"The religious subdenomination is Orthodox\" by layers Artworks, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "greek_orthodox", + "description": "denomination=greek_orthodox is displayed as \"The religious subdenomination is Greek-Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "russian_orthodox", + "description": "denomination=russian_orthodox is displayed as \"The religious subdenomination is Russian-Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "serbian_orthodox", + "description": "denomination=serbian_orthodox is displayed as \"The religious subdenomination is Serbian Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "protestant", + "description": "denomination=protestant is displayed as \"The religious subdenomination is Protestant\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "anglican", + "description": "denomination=anglican is displayed as \"The religious subdenomination is Anglican\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "adventist", + "description": "denomination=adventist is displayed as \"The religious subdenomination is Adventist\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "evangelical", + "description": "denomination=evangelical is displayed as \"The religious subdenomination is evangelical\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Muslim denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "shia", + "description": "denomination=shia is displayed as \"The religious subdenomination is Shia\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "sunni", + "description": "denomination=sunni is displayed as \"The religious subdenomination is Sunni\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "sufi", + "description": "denomination=sufi is displayed as \"The religious subdenomination is Sufi\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Jewish denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "conservative", + "description": "denomination=conservative is displayed as \"The religious subdenomination is Conservative\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "hasidic", + "description": "denomination=hasidic is displayed as \"The religious subdenomination is Hasidic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "reform", + "description": "denomination=reform is displayed as \"The religious subdenomination is Reform\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The denomination of this shrine is {denomination}\" and can be updated. The question is \"What's the denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_other", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "description": "Features with this tag are displayed by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md", + "icon_url": "./assets/layers/memorial/memorial.svg" + }, + { + "key": "historic", + "value": "memorial", + "description": "Features with this tag are displayed by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "wikidata", - "description": "Layer 'Memorials' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Artwork')" + "description": "Values of `wikidata` are shown with \"

Wikipedia page about the memorial

{wikipedia(wikidata)}\" and can be updated. The question is \"What is the Wikipedia page about this memorial?\" by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_wikidata", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Memorials' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Artwork')" + "description": "Values of `subject:wikidata` are shown with \"

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What is the Wikipedia page about the person or event that is remembered here?\" by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#subject_wikidata", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "start_date", - "description": "Layer 'Memorials' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Artwork')" - }, - { - "key": "backrest", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" - }, - { - "key": "two_sided", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" - }, - { - "key": "backrest", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" - }, - { - "key": "backrest", - "description": "Layer 'Memorials' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "no" - }, - { - "key": "armrest", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" - }, - { - "key": "armrest", - "description": "Layer 'Memorials' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "no" - }, - { - "key": "seats", - "description": "Layer 'Memorials' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" - }, - { - "key": "seats:separated", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "no" - }, - { - "key": "material", - "description": "Layer 'Memorials' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" - }, - { - "key": "material", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "wood" - }, - { - "key": "material", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "metal" - }, - { - "key": "material", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "stone" - }, - { - "key": "material", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "concrete" - }, - { - "key": "material", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "plastic" - }, - { - "key": "material", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "steel" - }, - { - "key": "direction", - "description": "Layer 'Memorials' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench & two_sided!=yes)" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "brown" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "green" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "gray" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "white" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "red" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "black" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "blue" - }, - { - "key": "colour", - "description": "Layer 'Memorials' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)", - "value": "yellow" - }, - { - "key": "survey:date", - "description": "Layer 'Memorials' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" - }, - { - "key": "survey:date", - "description": "Layer 'Memorials' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key survey:date. (This is only shown if amenity=bench)", - "value": "" - }, - { - "key": "inscription", - "description": "Layer 'Memorials' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Artwork') (This is only shown if amenity=bench)" - }, - { - "key": "not:inscription", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench)", - "value": "yes" - }, - { - "key": "inscription", - "description": "Layer 'Memorials' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key inscription. (This is only shown if amenity=bench)", - "value": "" - }, - { - "key": "historic", - "description": "Layer 'Memorials' 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 'Artwork') (This is only shown if amenity=bench & (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" - }, - { - "key": "historic", - "description": "Layer 'Memorials' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key historic. (This is only shown if amenity=bench & (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "" - }, - { - "key": "not:historic", - "description": "Layer 'Memorials' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not 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 amenity=bench & (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" + "description": "Values of `start_date` are shown with \"Placed on {start_date}\" and can be updated. The question is \"When was this memorial installed?\" by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#start_date", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "amenity", - "description": "The MapComplete theme Artwork has a layer Benches showing features with this tag", - "value": "bench" - }, - { - "key": "id", - "description": "Layer 'Benches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Artwork') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "yes" - }, - { - "key": "two_sided", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "yes" - }, - { - "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'This bench does have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "yes" - }, - { - "key": "backrest", - "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "no" - }, - { - "key": "armrest", - "description": "Layer 'Benches' shows armrest=yes with a fixed text, namely 'This bench does have one or more armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "yes" - }, - { - "key": "armrest", - "description": "Layer 'Benches' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "no" - }, - { - "key": "seats", - "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Artwork')" - }, - { - "key": "seats:separated", - "description": "Layer 'Benches' shows seats:separated=no with a fixed text, namely 'This bench does not have separated seats' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "no" - }, - { - "key": "material", - "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Artwork')" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=wood with a fixed text, namely 'The seating is made from wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "wood" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=metal with a fixed text, namely 'The seating is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "metal" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=stone with a fixed text, namely 'The seating is made from stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "stone" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=concrete with a fixed text, namely 'The seating is made from concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "concrete" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=plastic with a fixed text, namely 'The seating is made from plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "plastic" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=steel with a fixed text, namely 'The seating is made from steel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "steel" - }, - { - "key": "direction", - "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Artwork') (This is only shown if two_sided!=yes)" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Artwork')" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "brown" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "green" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "gray" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "white" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "red" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "black" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "blue" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "yellow" - }, - { - "key": "survey:date", - "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Artwork')" - }, - { - "key": "survey:date", - "description": "Layer 'Benches' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key survey:date.", - "value": "" - }, - { - "key": "inscription", - "description": "Layer 'Benches' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Artwork')" - }, - { - "key": "not:inscription", - "description": "Layer 'Benches' shows not:inscription=yes with a fixed text, namely 'This bench does not have an inscription' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "yes" - }, - { - "key": "inscription", - "description": "Layer 'Benches' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key inscription.", - "value": "" + "value": "bench", + "description": "Features with this tag are displayed by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism=artwork with a fixed text, namely 'This bench has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This bench has an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Benches' shows not:tourism:artwork=yes with a fixed text, namely 'This bench does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This bench does not have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism= with a fixed text, namely 'This bench probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key tourism.", - "value": "" - }, - { - "key": "historic", - "description": "Layer 'Benches' shows historic=memorial with a fixed text, namely 'This bench is a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" - }, - { - "key": "historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "" - }, - { - "key": "not:historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not 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))", - "value": "memorial" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "architecture" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "mural" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "painting" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "sculpture" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "statue" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "bust" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "stone" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "installation" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "graffiti" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "relief" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "azulejo" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "tilework" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)", - "value": "woodcarving" - }, - { - "key": "artist:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)" - }, - { - "key": "artist_name", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)" - }, - { - "key": "website", - "description": "Layer 'Benches' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)" - }, - { - "key": "subject:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Artwork') (This is only shown if tourism=artwork)" + "description": "tourism= is displayed as \"This bench probably doesn't have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_atm.json b/Docs/TagInfo/mapcomplete_atm.json index bef6eae4ec..149030a292 100644 --- a/Docs/TagInfo/mapcomplete_atm.json +++ b/Docs/TagInfo/mapcomplete_atm.json @@ -7,402 +7,485 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/atm/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme ATM Machines has a layer ATMs showing features with this tag", - "value": "atm" + "value": "atm", + "description": "Features with this tag are displayed by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "id", - "description": "Layer 'ATMs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers ATMs, Banks, Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "panoramax", - "description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "mapillary", - "description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "wikidata", - "description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "wikipedia", - "description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "brand", - "description": "Layer 'ATMs' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `brand` are shown with \"The brand of this ATM is {brand}\" and can be updated. The question is \"What brand is this ATM?\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#brand", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "operator", - "description": "Layer 'ATMs' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if amenity!=bank)" + "description": "Values of `operator` are shown with \"The ATM is operated by {operator}\" and can be updated. The question is \"What company operates this ATM?\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#operator", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "opening_hours", - "description": "Layer 'ATMs' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#opening_hours_24_7", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "opening_hours", - "description": "Layer 'ATMs' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'ATMs' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'ATM Machines')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers ATMs, Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#opening_hours_24_7", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "cash_out", - "description": "Layer 'ATMs' shows cash_out= with a fixed text, namely 'You can withdraw cash from this ATM' (in the mapcomplete.org theme 'ATM Machines') Picking this answer will delete the key cash_out.", - "value": "" + "description": "cash_out= is displayed as \"You can withdraw cash from this ATM\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "cash_out", - "description": "Layer 'ATMs' shows cash_out=yes with a fixed text, namely 'You can withdraw cash from this ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "cash_out=yes is displayed as \"You can withdraw cash from this ATM\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "cash_out", - "description": "Layer 'ATMs' shows cash_out=no with a fixed text, namely 'You cannot withdraw cash from this ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "cash_out=no is displayed as \"You cannot withdraw cash from this ATM\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "cash_in", - "description": "Layer 'ATMs' shows cash_in= with a fixed text, namely 'You probably cannot deposit cash into this ATM' (in the mapcomplete.org theme 'ATM Machines') Picking this answer will delete the key cash_in.", - "value": "" + "description": "cash_in= is displayed as \"You probably cannot deposit cash into this ATM\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_in", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "cash_in", - "description": "Layer 'ATMs' shows cash_in=yes with a fixed text, namely 'You can deposit cash into this ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "cash_in=yes is displayed as \"You can deposit cash into this ATM\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_in", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "cash_in", - "description": "Layer 'ATMs' shows cash_in=no with a fixed text, namely 'You cannot deposit cash into this ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "cash_in=no is displayed as \"You cannot deposit cash into this ATM\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_in", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "cash_out:notes:denominations", - "description": "Layer 'ATMs' shows cash_out:notes:denominations=5 EUR with a fixed text, namely '5 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))", - "value": "5 EUR" + "value": "5 EUR", + "description": "cash_out:notes:denominations=5 EUR is displayed as \"5 euro notes can be withdrawn\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/5euro.svg" }, { "key": "cash_out:notes:denominations", - "description": "Layer 'ATMs' shows cash_out:notes:denominations=10 EUR with a fixed text, namely '10 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))", - "value": "10 EUR" + "value": "10 EUR", + "description": "cash_out:notes:denominations=10 EUR is displayed as \"10 euro notes can be withdrawn\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/10euro.svg" }, { "key": "cash_out:notes:denominations", - "description": "Layer 'ATMs' shows cash_out:notes:denominations=20 EUR with a fixed text, namely '20 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))", - "value": "20 EUR" + "value": "20 EUR", + "description": "cash_out:notes:denominations=20 EUR is displayed as \"20 euro notes can be withdrawn\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/20euro.svg" }, { "key": "cash_out:notes:denominations", - "description": "Layer 'ATMs' shows cash_out:notes:denominations=50 EUR with a fixed text, namely '50 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))", - "value": "50 EUR" + "value": "50 EUR", + "description": "cash_out:notes:denominations=50 EUR is displayed as \"50 euro notes can be withdrawn\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/50euro.svg" }, { "key": "cash_out:notes:denominations", - "description": "Layer 'ATMs' shows cash_out:notes:denominations=100 EUR with a fixed text, namely '100 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))", - "value": "100 EUR" + "value": "100 EUR", + "description": "cash_out:notes:denominations=100 EUR is displayed as \"100 euro notes can be withdrawn\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/100euro.svg" }, { "key": "cash_out:notes:denominations", - "description": "Layer 'ATMs' shows cash_out:notes:denominations=200 EUR with a fixed text, namely '200 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))", - "value": "200 EUR" + "value": "200 EUR", + "description": "cash_out:notes:denominations=200 EUR is displayed as \"200 euro notes can be withdrawn\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/200euro.svg" }, { "key": "cash_out:notes:denominations", - "description": "Layer 'ATMs' shows cash_out:notes:denominations=500 EUR with a fixed text, namely '500 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))", - "value": "500 EUR" + "value": "500 EUR", + "description": "cash_out:notes:denominations=500 EUR is displayed as \"500 euro notes can be withdrawn\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/500euro.svg" }, { "key": "speech_output", - "description": "Layer 'ATMs' shows speech_output=yes with a fixed text, namely 'This ATM has speech output, usually available through a headphone jack' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "speech_output=yes is displayed as \"This ATM has speech output, usually available through a headphone jack\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#speech_output", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "speech_output", - "description": "Layer 'ATMs' shows speech_output=no with a fixed text, namely 'This ATM does not have speech output' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "speech_output=no is displayed as \"This ATM does not have speech output\" by layer ATMs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#speech_output", + "icon_url": "./assets/layers/atm/atm.svg" }, { "key": "amenity", - "description": "The MapComplete theme ATM Machines has a layer Banks showing features with this tag", - "value": "bank" + "value": "bank", + "description": "Features with this tag are displayed by layer Banks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md", + "icon_url": "./assets/layers/bank/bank.svg" }, { "key": "atm", - "description": "The MapComplete theme ATM Machines has a layer Banks showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Banks' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "yes", + "description": "Features with this tag are displayed by layers Banks, Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md", + "icon_url": "./assets/layers/bank/bank.svg" }, { "key": "atm", - "description": "Layer 'Banks' shows atm=yes with a fixed text, namely 'This bank has an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "atm=yes is displayed as \"This bank has an ATM\" by layer Banks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md#has_atm", + "icon_url": "./assets/layers/bank/bank.svg" }, { "key": "atm", - "description": "Layer 'Banks' shows atm=no with a fixed text, namely 'This bank does not have an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "atm=no is displayed as \"This bank does not have an ATM\" by layer Banks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md#has_atm", + "icon_url": "./assets/layers/bank/bank.svg" }, { "key": "atm", - "description": "Layer 'Banks' shows atm=separate with a fixed text, namely 'This bank does have an ATM, but it is mapped as a different icon' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "separate" + "value": "separate", + "description": "atm=separate is displayed as \"This bank does have an ATM, but it is mapped as a different icon\" by layer Banks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md#has_atm", + "icon_url": "./assets/layers/bank/bank.svg" }, { "key": "amenity", - "description": "The MapComplete theme ATM Machines has a layer Post offices showing features with this tag", - "value": "post_office" + "value": "post_office", + "description": "Features with this tag are displayed by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office", - "description": "The MapComplete theme ATM Machines has a layer Post offices showing features with this tag", - "value": "post_partner" - }, - { - "key": "atm", - "description": "The MapComplete theme ATM Machines has a layer Post offices showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Post offices' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "post_partner", + "description": "Features with this tag are displayed by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "phone", - "description": "Layer 'Post offices' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Post offices' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'ATM Machines')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Post offices' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Post offices' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'ATM Machines')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Post offices' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'ATM Machines')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Post offices' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Post offices' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'ATM Machines')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "opening_hours", - "description": "Layer 'Post offices' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'ATM Machines')" - }, - { - "key": "opening_hours", - "description": "Layer 'Post offices' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'ATM Machines')", - "value": "closed" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours for this post office?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#opening_hours", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office", - "description": "Layer 'Post offices' shows post_office=post_partner with a fixed text, namely 'This shop is a post partner' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if amenity!=post_office)", - "value": "post_partner" + "value": "post_partner", + "description": "post_office=post_partner is displayed as \"This shop is a post partner\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#post_partner", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office", - "description": "Layer 'Post offices' shows post_office= with a fixed text, namely 'This shop is not a post partner' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') Picking this answer will delete the key post_office. (This is only shown if amenity!=post_office)", - "value": "" + "description": "post_office= is displayed as \"This shop is not a post partner\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#post_partner", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "brand", - "description": "Layer 'Post offices' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if amenity=post_office)" + "description": "Values of `brand` are shown with \"This is a {brand} post office\" and can be updated. The question is \"To which brand does this post office belong?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#post_offic_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:brand' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)" + "description": "Values of `post_office:brand` are shown with \"This location offers services for {post_office:brand}\" and can be updated. The question is \"For which brand does this location offer services?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=DHL with a fixed text, namely 'This location offers services for DHL' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)", - "value": "DHL" + "value": "DHL", + "description": "post_office:brand=DHL is displayed as \"This location offers services for DHL\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=DPD with a fixed text, namely 'This location offers services for DPD' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)", - "value": "DPD" + "value": "DPD", + "description": "post_office:brand=DPD is displayed as \"This location offers services for DPD\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=GLS with a fixed text, namely 'This location offers services for GLS' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)", - "value": "GLS" + "value": "GLS", + "description": "post_office:brand=GLS is displayed as \"This location offers services for GLS\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=UPS with a fixed text, namely 'This location offers services for UPS' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)", - "value": "UPS" + "value": "UPS", + "description": "post_office:brand=UPS is displayed as \"This location offers services for UPS\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=DHL Paketshop with a fixed text, namely 'This location is a DHL Paketshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)", - "value": "DHL Paketshop" + "value": "DHL Paketshop", + "description": "post_office:brand=DHL Paketshop is displayed as \"This location is a DHL Paketshop\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=Hermes PaketShop with a fixed text, namely 'This location is a Hermes PaketShop' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)", - "value": "Hermes PaketShop" + "value": "Hermes PaketShop", + "description": "post_office:brand=Hermes PaketShop is displayed as \"This location is a Hermes PaketShop\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=PostNL with a fixed text, namely 'This location is a PostNL-point' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)", - "value": "PostNL" + "value": "PostNL", + "description": "post_office:brand=PostNL is displayed as \"This location is a PostNL-point\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=bpost with a fixed text, namely 'This location offers services for bpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)", - "value": "bpost" + "value": "bpost", + "description": "post_office:brand=bpost is displayed as \"This location offers services for bpost\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:letter_from", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:letter_from' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `post_office:letter_from` are shown with \"You can post letters with these companies: {post_office:letter_from}\" and can be updated. The question is \"Can you post a letter here?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#letter_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:letter_from", - "description": "Layer 'Post offices' shows post_office:letter_from=yes with a fixed text, namely 'You can post letters here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "post_office:letter_from=yes is displayed as \"You can post letters here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#letter_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:letter_from", - "description": "Layer 'Post offices' shows post_office:letter_from=no with a fixed text, namely 'You can't post letters here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "post_office:letter_from=no is displayed as \"You can't post letters here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#letter_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_from", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_from' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `post_office:parcel_from` are shown with \"You can post parcels with these companies: {post_office:parcel_from}\" and can be updated. The question is \"Can you send a parcel here?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_from", - "description": "Layer 'Post offices' shows post_office:parcel_from=yes with a fixed text, namely 'You can send parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "post_office:parcel_from=yes is displayed as \"You can send parcels here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_from", - "description": "Layer 'Post offices' shows post_office:parcel_from=no with a fixed text, namely 'You can't send parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "post_office:parcel_from=no is displayed as \"You can't send parcels here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_pickup", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_pickup' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `post_office:parcel_pickup` are shown with \"You can pick up parcels from these companies: {post_office:parcel_pickup}\" and can be updated. The question is \"Can you pick up missed parcels here?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_pickup", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_pickup", - "description": "Layer 'Post offices' shows post_office:parcel_pickup=yes with a fixed text, namely 'You can pick up missed parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "post_office:parcel_pickup=yes is displayed as \"You can pick up missed parcels here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_pickup", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_pickup", - "description": "Layer 'Post offices' shows post_office:parcel_pickup=no with a fixed text, namely 'You can't pick up missed parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "post_office:parcel_pickup=no is displayed as \"You can't pick up missed parcels here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_pickup", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_to", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_to' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `post_office:parcel_to` are shown with \"You can send parcels to here for pickup with these companies: {post_office:parcel_to}\" and can be updated. The question is \"Can you send parcels to here for pickup?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_to", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_to", - "description": "Layer 'Post offices' shows post_office:parcel_to=yes with a fixed text, namely 'You can send parcels to here for pickup' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "post_office:parcel_to=yes is displayed as \"You can send parcels to here for pickup\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_to", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_to", - "description": "Layer 'Post offices' shows post_office:parcel_to=no with a fixed text, namely 'You can't send parcels to here for pickup' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "post_office:parcel_to=no is displayed as \"You can't send parcels to here for pickup\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_to", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:stamps", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:stamps' (in the mapcomplete.org theme 'ATM Machines')" + "description": "Values of `post_office:stamps` are shown with \"You can buy stamps from companies: {post_office:stamps}\" and can be updated. The question is \"Can you buy stamps here?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#stamps", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:stamps", - "description": "Layer 'Post offices' shows post_office:stamps=yes with a fixed text, namely 'You can buy stamps here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "post_office:stamps=yes is displayed as \"You can buy stamps here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#stamps", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:stamps", - "description": "Layer 'Post offices' shows post_office:stamps=no with a fixed text, namely 'You can't buy stamps here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "post_office:stamps=no is displayed as \"You can't buy stamps here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#stamps", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "atm", - "description": "Layer 'Post offices' shows atm=yes with a fixed text, namely 'This post office has an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "yes" + "value": "yes", + "description": "atm=yes is displayed as \"This post office has an ATM\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#has_atm", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "atm", - "description": "Layer 'Post offices' shows atm=no with a fixed text, namely 'This post office does not have an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "no" + "value": "no", + "description": "atm=no is displayed as \"This post office does not have an ATM\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#has_atm", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "atm", - "description": "Layer 'Post offices' shows atm=separate with a fixed text, namely 'This post office does have an ATM, but it is mapped as a different icon' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')", - "value": "separate" + "value": "separate", + "description": "atm=separate is displayed as \"This post office does have an ATM, but it is mapped as a different icon\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#has_atm", + "icon_url": "./assets/layers/postoffices/post_office.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_benches.json b/Docs/TagInfo/mapcomplete_benches.json index dd6031a622..1d7dc04d0e 100644 --- a/Docs/TagInfo/mapcomplete_benches.json +++ b/Docs/TagInfo/mapcomplete_benches.json @@ -7,436 +7,543 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/benches/bench_poi.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "leisure", - "description": "The MapComplete theme Benches has a layer Picnic tables showing features with this tag", - "value": "picnic_table" + "value": "picnic_table", + "description": "Features with this tag are displayed by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "id", - "description": "Layer 'Picnic tables' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Benches') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Picnic tables, Benches, Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "panoramax", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "mapillary", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "wikidata", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "wikipedia", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "location", - "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Benches')" + "description": "Values of `material` are shown with \"This picnic table is made of {material}\" and can be updated. The question is \"What material is this picnic table made of?\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=wood with a fixed text, namely 'This is a wooden picnic table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"This is a wooden picnic table\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"This is a concrete picnic table\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=plastic with a fixed text, namely 'This picnic table is made from (recycled) plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"This picnic table is made from (recycled) plastic\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=metal with a fixed text, namely 'This picnic table is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"This picnic table is made from metal\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "amenity", - "description": "The MapComplete theme Benches has a layer Benches showing features with this tag", - "value": "bench" - }, - { - "key": "id", - "description": "Layer 'Benches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Benches') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bench", + "description": "Features with this tag are displayed by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "two_sided", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'This bench does have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "yes" + "value": "yes", + "description": "backrest=yes is displayed as \"This bench does have a backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/one_sided.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "no" + "value": "no", + "description": "backrest=no is displayed as \"This bench does not have a backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/no_backrest.svg" }, { "key": "armrest", - "description": "Layer 'Benches' shows armrest=yes with a fixed text, namely 'This bench does have one or more armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "yes" + "value": "yes", + "description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_armrest", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "armrest", - "description": "Layer 'Benches' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "no" + "value": "no", + "description": "armrest=no is displayed as \"This bench does not have any armrests\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_armrest", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "seats", - "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Benches')" + "description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_seats", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "seats:separated", - "description": "Layer 'Benches' shows seats:separated=no with a fixed text, namely 'This bench does not have separated seats' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "no" + "value": "no", + "description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_seats", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Benches')" + "description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=wood with a fixed text, namely 'The seating is made from wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"The seating is made from wood\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=metal with a fixed text, namely 'The seating is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"The seating is made from metal\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=stone with a fixed text, namely 'The seating is made from stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "stone" + "value": "stone", + "description": "material=stone is displayed as \"The seating is made from stone\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=concrete with a fixed text, namely 'The seating is made from concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"The seating is made from concrete\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=plastic with a fixed text, namely 'The seating is made from plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"The seating is made from plastic\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=steel with a fixed text, namely 'The seating is made from steel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "steel" + "value": "steel", + "description": "material=steel is displayed as \"The seating is made from steel\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "direction", - "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Benches') (This is only shown if two_sided!=yes)" + "description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_direction", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Benches')" + "description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "brown" + "value": "brown", + "description": "colour=brown is displayed as \"Colour: brown\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "green" + "value": "green", + "description": "colour=green is displayed as \"Colour: green\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "gray" + "value": "gray", + "description": "colour=gray is displayed as \"Colour: gray\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "white" + "value": "white", + "description": "colour=white is displayed as \"Colour: white\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "red" + "value": "red", + "description": "colour=red is displayed as \"Colour: red\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "black" + "value": "black", + "description": "colour=black is displayed as \"Colour: black\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "blue" + "value": "blue", + "description": "colour=blue is displayed as \"Colour: blue\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "yellow" + "value": "yellow", + "description": "colour=yellow is displayed as \"Colour: yellow\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "survey:date", - "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Benches')" + "description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_survey_date", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "survey:date", - "description": "Layer 'Benches' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key survey:date.", - "value": "" + "description": "survey:date= is displayed as \"Surveyed today!\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_survey_date", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "inscription", - "description": "Layer 'Benches' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Benches')" + "description": "Values of `inscription` are shown with \"This bench has the following inscription:

{inscription}

\" and can be updated. The question is \"Does this bench have an inscription?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:inscription", - "description": "Layer 'Benches' shows not:inscription=yes with a fixed text, namely 'This bench does not have an inscription' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "inscription", - "description": "Layer 'Benches' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key inscription.", - "value": "" + "description": "inscription= is displayed as \"This bench probably does not not have an inscription\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism=artwork with a fixed text, namely 'This bench has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This bench has an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Benches' shows not:tourism:artwork=yes with a fixed text, namely 'This bench does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This bench does not have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism= with a fixed text, namely 'This bench probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key tourism.", - "value": "" + "description": "tourism= is displayed as \"This bench probably doesn't have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "historic", - "description": "Layer 'Benches' shows historic=memorial with a fixed text, namely 'This bench is a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "" + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" + "value": "memorial", + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artist_wikidata", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artist_name", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artist_name", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "website", - "description": "Layer 'Benches' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_website", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_subject", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "highway", - "description": "The MapComplete theme Benches has a layer Benches at public transport stops showing features with this tag", - "value": "bus_stop" + "value": "bus_stop", + "description": "Features with this tag are displayed by layer Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md", + "icon_url": "./assets/themes/benches/bench_public_transport.svg" }, { "key": "bench", - "description": "The MapComplete theme Benches has a layer Benches at public transport stops showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md", + "icon_url": "./assets/themes/benches/bench_public_transport.svg" }, { "key": "bench", - "description": "The MapComplete theme Benches has a layer Benches at public transport stops showing features with this tag", - "value": "stand_up_bench" - }, - { - "key": "id", - "description": "Layer 'Benches at public transport stops' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Benches') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "stand_up_bench", + "description": "Features with this tag are displayed by layer Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md", + "icon_url": "./assets/themes/benches/bench_public_transport.svg" }, { "key": "name", - "description": "Layer 'Benches at public transport stops' shows values with key 'name' (in the mapcomplete.org theme 'Benches')" + "description": "Values of `name` are shown with \"{name}\" by layer Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md#bench_at_pt_name", + "icon_url": "./assets/themes/benches/bench_public_transport.svg" }, { "key": "bench", - "description": "Layer 'Benches at public transport stops' shows bench=yes with a fixed text, namely 'There is a normal, sit-down bench here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "yes" + "value": "yes", + "description": "bench=yes is displayed as \"There is a normal, sit-down bench here\" by layer Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md#bench_at_pt_bench_type", + "icon_url": "./assets/themes/benches/bench_public_transport.svg" }, { "key": "bench", - "description": "Layer 'Benches at public transport stops' shows bench=stand_up_bench with a fixed text, namely 'Stand up bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "stand_up_bench" + "value": "stand_up_bench", + "description": "bench=stand_up_bench is displayed as \"Stand up bench\" by layer Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md#bench_at_pt_bench_type", + "icon_url": "./assets/themes/benches/bench_public_transport.svg" }, { "key": "bench", - "description": "Layer 'Benches at public transport stops' shows bench=no with a fixed text, namely 'There is no bench here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')", - "value": "no" + "value": "no", + "description": "bench=no is displayed as \"There is no bench here\" by layer Benches at public transport stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md#bench_at_pt_bench_type", + "icon_url": "./assets/themes/benches/bench_public_transport.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_bicycle_parkings.json b/Docs/TagInfo/mapcomplete_bicycle_parkings.json index 888c078314..517ce4bcb4 100644 --- a/Docs/TagInfo/mapcomplete_bicycle_parkings.json +++ b/Docs/TagInfo/mapcomplete_bicycle_parkings.json @@ -7,267 +7,378 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/bicycle_parkings/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Bicycle parkings has a layer Bike parking showing features with this tag", - "value": "bicycle_parking" + "value": "bicycle_parking", + "description": "Features with this tag are displayed by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "id", - "description": "Layer 'Bike parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "panoramax", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "mapillary", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "wikidata", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "wikipedia", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'bicycle_parking' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `bicycle_parking` are shown with \"This is a bicycle parking of the type: {bicycle_parking}\" and can be updated. The question is \"What is the type of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=stands with a fixed text, namely 'Stands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "stands" + "value": "stands", + "description": "bicycle_parking=stands is displayed as \"Stands\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/staple.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=safe_loops with a fixed text, namely 'Rack with side loops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "safe_loops" + "value": "safe_loops", + "description": "bicycle_parking=safe_loops is displayed as \"Rack with side loops\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/safe_loops.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=wall_loops with a fixed text, namely 'Wheelbenders / rack' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "wall_loops" + "value": "wall_loops", + "description": "bicycle_parking=wall_loops is displayed as \"Wheelbenders / rack\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/wall_loops.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=handlebar_holder with a fixed text, namely 'Handlebar holder' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "handlebar_holder" + "value": "handlebar_holder", + "description": "bicycle_parking=handlebar_holder is displayed as \"Handlebar holder\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/handlebar_holder.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=rack with a fixed text, namely 'Rack' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "rack" + "value": "rack", + "description": "bicycle_parking=rack is displayed as \"Rack\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/rack.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=two_tier with a fixed text, namely 'Two-tiered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "two_tier" + "value": "two_tier", + "description": "bicycle_parking=two_tier is displayed as \"Two-tiered\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/two_tier.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=shed with a fixed text, namely 'Shed' (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "shed" + "value": "shed", + "description": "bicycle_parking=shed is displayed as \"Shed\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/shed.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=bollard with a fixed text, namely 'Bollard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "bollard" + "value": "bollard", + "description": "bicycle_parking=bollard is displayed as \"Bollard\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/bollard.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=floor with a fixed text, namely 'An area on the floor which is marked for bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "floor" + "value": "floor", + "description": "bicycle_parking=floor is displayed as \"An area on the floor which is marked for bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=lockers with a fixed text, namely 'A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "lockers" + "value": "lockers", + "description": "bicycle_parking=lockers is displayed as \"A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=lean_and_stick with a fixed text, namely 'A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "lean_and_stick" + "value": "lean_and_stick", + "description": "bicycle_parking=lean_and_stick is displayed as \"A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=underground with a fixed text, namely 'Underground parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Underground parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=surface with a fixed text, namely 'Surface level parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "surface" + "value": "surface", + "description": "location=surface is displayed as \"Surface level parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=rooftop with a fixed text, namely 'Rooftop parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "rooftop" + "value": "rooftop", + "description": "location=rooftop is displayed as \"Rooftop parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location= with a fixed text, namely 'Surface level parking' (in the mapcomplete.org theme 'Bicycle parkings') Picking this answer will delete the key location.", - "value": "" + "description": "location= is displayed as \"Surface level parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "building", - "description": "Layer 'Bike parking' shows building=bicycle_shed with a fixed text, namely 'This is a bicycle shed (with walls on at least three sides)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "bicycle_shed" + "value": "bicycle_shed", + "description": "building=bicycle_shed is displayed as \"This is a bicycle shed (with walls on at least three sides)\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "building", - "description": "Layer 'Bike parking' shows building=roof with a fixed text, namely 'This is a bicycle parking under a roof; the roof only serves the bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "roof" + "value": "roof", + "description": "building=roof is displayed as \"This is a bicycle parking under a roof; the roof only serves the bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "indoor", - "description": "Layer 'Bike parking' shows indoor=yes with a fixed text, namely 'This bicycle parking is located in a building behind a door or gate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This bicycle parking is located in a building behind a door or gate\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "indoor", - "description": "Layer 'Bike parking' shows indoor=no & covered=yes with a fixed text, namely 'This bicycle parking is under (a part of) a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "no" + "value": "no", + "description": "indoor=no & covered=yes is displayed as \"This bicycle parking is under (a part of) a building\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows indoor=no & covered=yes with a fixed text, namely 'This bicycle parking is under (a part of) a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "indoor=no & covered=yes is displayed as \"This bicycle parking is under (a part of) a building\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows covered=yes with a fixed text, namely 'This parking is covered (it has a roof)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "covered=yes is displayed as \"This parking is covered (it has a roof)\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows covered=no with a fixed text, namely 'This parking is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "no" + "value": "no", + "description": "covered=no is displayed as \"This parking is not covered\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "capacity", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `capacity` are shown with \"Place for {capacity} bikes\" and can be updated. The question is \"How many bicycles fit in this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Capacity", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `access` are shown with \"{access}\" and can be updated. The question is \"Who can use this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Publicly accessible\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=customers with a fixed text, namely 'Access is primarily for visitors to a business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Access is primarily for visitors to a business\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=members with a fixed text, namely 'Access is limited to members of a school, company or organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "members" + "value": "members", + "description": "access=members is displayed as \"Access is limited to members of a school, company or organisation\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=private with a fixed text, namely 'Private bicycle parking which is never available to the public, also not via a membership fee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Private bicycle parking which is never available to the public, also not via a membership fee\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "fee", - "description": "Layer 'Bike parking' shows fee=yes with a fixed text, namely 'One has to pay to use this bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"One has to pay to use this bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#fee", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "fee", - "description": "Layer 'Bike parking' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#fee", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "charge", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if fee=yes)" + "description": "Values of `charge` are shown with \"Parking your bike costs {charge}\" and can be updated. The question is \"How much does it cost to park your bike here?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#charge", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "opening_hours", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "opening_hours", - "description": "Layer 'Bike parking' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Bike parking' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "operator", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `operator` are shown with \"This bicycle parking is maintained by {operator}\" and can be updated. The question is \"Who maintains this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "operator:phone", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:phone' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `operator:phone` are shown with \"{operator:phone}\" and can be updated. The question is \"What is the phone number of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "phone", - "description": "Layer 'Bike parking' shows phone~.+ with a fixed text, namely '{phone}' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "phone~.+ is displayed as \"{phone}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Bike parking' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "contact:phone~.+ is displayed as \"{contact:phone}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "operator:website", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:website' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `operator:website` are shown with \"{operator:website}\" and can be updated. The question is \"What is the website number of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "website", - "description": "Layer 'Bike parking' shows website~.+ with a fixed text, namely '{website}' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "website~.+ is displayed as \"{website}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Bike parking' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "operator:email", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:email' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `operator:email` are shown with \"{operator:email}\" and can be updated. The question is \"What is the email address of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=yes with a fixed text, namely 'This parking has room for cargo bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "yes" + "value": "yes", + "description": "cargo_bike=yes is displayed as \"This parking has room for cargo bikes\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=designated with a fixed text, namely 'This parking has designated (official) spots for cargo bikes.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "designated" + "value": "designated", + "description": "cargo_bike=designated is displayed as \"This parking has designated (official) spots for cargo bikes.\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'You're not allowed to park cargo bikes or there are no places provided for cargo bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')", - "value": "no" + "value": "no", + "description": "cargo_bike=no is displayed as \"You're not allowed to park cargo bikes or there are no places provided for cargo bikes\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "capacity:cargo_bike", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)" + "description": "Values of `capacity:cargo_bike` are shown with \"This parking fits {capacity:cargo_bike} cargo bikes\" and can be updated. The question is \"How many cargo bicycles fit in this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_capacity_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)", - "value": "no" + "value": "no", + "description": "cargo_bike=no is displayed as \"There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_capacity_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Bicycle parkings')" + "description": "Values of `maxstay` are shown with \"A bike can be parked here for at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum allowed parking duration?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#maxstay", + "icon_url": "./assets/layers/bike_parking/parking.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_bicycle_rental.json b/Docs/TagInfo/mapcomplete_bicycle_rental.json index de0b31dea1..bfcbe210f9 100644 --- a/Docs/TagInfo/mapcomplete_bicycle_rental.json +++ b/Docs/TagInfo/mapcomplete_bicycle_rental.json @@ -7,244 +7,327 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/bicycle_rental/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "Features with this tag are displayed by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "bicycle_rental", - "description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag" + "description": "Features with this tag are displayed by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "service:bicycle:rental", - "description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag" + "description": "Features with this tag are displayed by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "id", - "description": "Layer 'Bicycle rental' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "panoramax", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "mapillary", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "wikidata", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "wikipedia", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "shop", - "description": "Layer 'Bicycle rental' shows shop=rental & bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)", - "value": "rental" + "value": "rental", + "description": "shop=rental & bicycle_rental=shop is displayed as \"This is a shop whose main focus is bicycle rental\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows shop=rental & bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)", - "value": "shop" + "value": "shop", + "description": "shop=rental & bicycle_rental=shop is displayed as \"This is a shop whose main focus is bicycle rental\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "shop", - "description": "Layer 'Bicycle rental' shows shop=rental with a fixed text, namely 'This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes & shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes & shop=bicycle is displayed as \"This is a shop which sells or repairs bicycles, but also rents out bicycles\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "shop", - "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes & shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)", - "value": "bicycle" + "value": "bicycle", + "description": "service:bicycle:rental=yes & shop=bicycle is displayed as \"This is a shop which sells or repairs bicycles, but also rents out bicycles\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked to a structure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)", - "value": "docking_station" + "value": "docking_station", + "description": "bicycle_rental=docking_station is displayed as \"This is an automated docking station, where a bicycle is mechanically locked to a structure\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)", - "value": "key_dispensing_machine" + "value": "key_dispensing_machine", + "description": "bicycle_rental=key_dispensing_machine is displayed as \"A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)", - "value": "dropoff_point" + "value": "dropoff_point", + "description": "bicycle_rental=dropoff_point is displayed as \"This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "website", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Bicycle rental')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Bicycle rental' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Bicycle rental')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Bicycle rental')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Bicycle rental' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Bicycle rental')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Bicycle rental' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Bicycle rental')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Bicycle rental')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Bicycle rental' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Bicycle rental')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+ | opening_hours~.+)" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#opening_hours", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle rental' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+ | opening_hours~.+)", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#opening_hours", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "payment:cash", - "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+)", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Bicycle rental, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+)", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Bicycle rental, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Bicycle rental' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+)", - "value": "yes" - }, - { - "key": "payment:cash", - "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Bicycle rental' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Bicycle rental, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:app", - "description": "Layer 'Bicycle rental' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)", - "value": "yes" + "value": "yes", + "description": "payment:app=yes is displayed as \"Payment is done using a dedicated app\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options_advanced", + "icon_url": "./assets/layers/questions/smartphone.svg" }, { "key": "payment:membership_card", - "description": "Layer 'Bicycle rental' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)", - "value": "yes" + "value": "yes", + "description": "payment:membership_card=yes is displayed as \"Payment is done using a membership card\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options_advanced", + "icon_url": "./assets/layers/questions/nfc_card.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Bicycle rental')" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*city_bike.*)$)" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_city_bike", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*ebike.*)$)" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_ebike", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*kid_bike.*)$)" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_kid_bike", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*bmx.*)$)" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_bmx", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*mtb.*)$)" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_mtb", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*bicycle_pannier.*)$)" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*tandem_bicycle.*)$)" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/themes/bicycle_rental/logo.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_bicyclelib.json b/Docs/TagInfo/mapcomplete_bicyclelib.json index 6c48c4ee9a..f7318dfd55 100644 --- a/Docs/TagInfo/mapcomplete_bicyclelib.json +++ b/Docs/TagInfo/mapcomplete_bicyclelib.json @@ -7,121 +7,172 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/bicyclelib/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Bicycle libraries has a layer Bicycle library showing features with this tag", - "value": "bicycle_library" + "value": "bicycle_library", + "description": "Features with this tag are displayed by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "id", - "description": "Layer 'Bicycle library' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle libraries') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "panoramax", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "mapillary", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "wikidata", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "wikipedia", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "name", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "Values of `name` are shown with \"This bicycle library is called {name}\" and can be updated. The question is \"What is the name of this bicycle library?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_name", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "website", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Bicycle library' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "phone", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Bicycle library' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Bicycle library' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Bicycle library' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#opening_hours", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle library' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Bicycle libraries')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#opening_hours", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "Values of `charge` are shown with \"Lending a bicycle costs {charge}\" and can be updated. The question is \"How much does lending a bicycle cost?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "fee", - "description": "Layer 'Bicycle library' shows fee=no & charge= with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')", - "value": "no" + "value": "no", + "description": "fee=no & charge= is displayed as \"Lending a bicycle is free\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows fee=no & charge= with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & charge= is displayed as \"Lending a bicycle is free\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "fee", - "description": "Layer 'Bicycle library' shows fee=yes & charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')", - "value": "yes" + "value": "yes", + "description": "fee=yes & charge=€20warranty + €20/year is displayed as \"Lending a bicycle costs €20/year and €20 warranty\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows fee=yes & charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')", - "value": "€20warranty + €20/year" + "value": "€20warranty + €20/year", + "description": "fee=yes & charge=€20warranty + €20/year is displayed as \"Lending a bicycle costs €20/year and €20 warranty\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=child with a fixed text, namely 'Bikes for children available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')", - "value": "child" + "value": "child", + "description": "bicycle_library:for=child is displayed as \"Bikes for children available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=adult with a fixed text, namely 'Bikes for adult available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')", - "value": "adult" + "value": "adult", + "description": "bicycle_library:for=adult is displayed as \"Bikes for adult available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=disabled with a fixed text, namely 'Bikes for disabled persons available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')", - "value": "disabled" + "value": "disabled", + "description": "bicycle_library:for=disabled is displayed as \"Bikes for disabled persons available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "description", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Bicycle libraries')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#description", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_binoculars.json b/Docs/TagInfo/mapcomplete_binoculars.json index 5529c02ed7..095e489f85 100644 --- a/Docs/TagInfo/mapcomplete_binoculars.json +++ b/Docs/TagInfo/mapcomplete_binoculars.json @@ -7,55 +7,76 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/binocular/telescope.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Binoculars has a layer Binoculars showing features with this tag", - "value": "binoculars" + "value": "binoculars", + "description": "Features with this tag are displayed by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "id", - "description": "Layer 'Binoculars' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Binoculars') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "panoramax", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "mapillary", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "wikidata", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "wikipedia", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "charge", - "description": "Layer 'Binoculars' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Binoculars')" + "description": "Values of `charge` are shown with \"Using these binoculars costs {charge}\" and can be updated. The question is \"How much does one have to pay to use these binoculars?\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "fee", - "description": "Layer 'Binoculars' shows fee=no & charge= with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Binoculars')", - "value": "no" + "value": "no", + "description": "fee=no & charge= is displayed as \"Free to use\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "charge", - "description": "Layer 'Binoculars' shows fee=no & charge= with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Binoculars') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & charge= is displayed as \"Free to use\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "direction", - "description": "Layer 'Binoculars' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Binoculars')" + "description": "Values of `direction` are shown with \"Looks towards {direction}°\" and can be updated. The question is \"When looking through this binocular, in what direction does one look?\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_direction", + "icon_url": "./assets/layers/binocular/telescope.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_blind_osm.json b/Docs/TagInfo/mapcomplete_blind_osm.json index f1b552dc8a..6f7df90b4e 100644 --- a/Docs/TagInfo/mapcomplete_blind_osm.json +++ b/Docs/TagInfo/mapcomplete_blind_osm.json @@ -7,1649 +7,2014 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/blind_osm/Blindicon.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "cycleway" + "value": "cycleway", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "lane" + "value": "lane", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "shared_lane" + "value": "shared_lane", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "track" + "value": "track", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "residential" + "value": "residential", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "tertiary" + "value": "tertiary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "unclassified" + "value": "unclassified", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "primary" + "value": "primary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "secondary" + "value": "secondary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "tertiary_link" + "value": "tertiary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "primary_link" + "value": "primary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "secondary_link" + "value": "secondary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "service" + "value": "service", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "footway" + "value": "footway", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "pedestrian" + "value": "pedestrian", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "living_street" + "value": "living_street", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "path" + "value": "path", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle", - "description": "The MapComplete theme OSM for the blind has a layer Cycleways and roads showing features with this tag", - "value": "designated" + "value": "designated", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "id", - "description": "Layer 'Cycleways and roads' 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 'OSM for the blind') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Cycleways and roads, Crossings, Kerbs, Transit Stops, Elevator, Stairs, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs, Transit Stops, Elevator, Stairs, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "panoramax", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs, Transit Stops, Elevator, Stairs, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "mapillary", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs, Transit Stops, Elevator, Stairs, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "wikidata", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs, Transit Stops, Elevator, Stairs, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "wikipedia", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs, Transit Stops, Elevator, Stairs, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=shared_lane with a fixed text, namely 'There is a shared lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "shared_lane" + "value": "shared_lane", + "description": "cycleway=shared_lane is displayed as \"There is a shared lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=lane with a fixed text, namely 'There is a lane next to the road (separated with paint)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "lane" + "value": "lane", + "description": "cycleway=lane is displayed as \"There is a lane next to the road (separated with paint)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=track with a fixed text, namely 'There is a track, but no cycleway drawn separately from this road on the map.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "track" + "value": "track", + "description": "cycleway=track is displayed as \"There is a track, but no cycleway drawn separately from this road on the map.\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=separate with a fixed text, namely 'There is a separately drawn cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "separate" + "value": "separate", + "description": "cycleway=separate is displayed as \"There is a separately drawn cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "no" - }, - { - "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "no" + "value": "no", + "description": "cycleway=no is displayed as \"There is no cycleway\" by layers Cycleways and roads, Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This street is lit\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=no with a fixed text, namely 'This road is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "lit=no is displayed as \"This road is not lit\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=sunset-sunrise with a fixed text, namely 'This road is lit at night' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "sunset-sunrise" + "value": "sunset-sunrise", + "description": "lit=sunset-sunrise is displayed as \"This road is lit at night\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=24/7 with a fixed text, namely 'This road is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "24/7" + "value": "24/7", + "description": "lit=24/7 is displayed as \"This road is lit 24/7\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "30" + "value": "30", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "overtaking:motor_vehicle", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "no" + "value": "no", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road=yes is displayed as \"This street is a bicycle road\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key proposed:bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "30" + "value": "30", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "source:maxspeed", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "DE:bicycle_road" + "value": "DE:bicycle_road", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "vehicle", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "no" + "value": "no", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "designated" + "value": "designated", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key proposed:bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "overtaking:motor_vehicle", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key overtaking:motor_vehicle. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1020-30" + "value": "DE:244.1,1020-30", + "description": "traffic_sign=DE:244.1,1020-30 is displayed as \"Residents allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1020-30.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12,1024-10" + "value": "DE:244.1,1022-12,1024-10", + "description": "traffic_sign=DE:244.1,1022-12,1024-10 is displayed as \"Motor vehicles allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_KFZ_frei.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12" + "value": "DE:244.1,1022-12", + "description": "traffic_sign=DE:244.1,1022-12 is displayed as \"Motorcycles allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1022-12.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1024-10" + "value": "DE:244.1,1024-10", + "description": "traffic_sign=DE:244.1,1024-10 is displayed as \"Cars allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1024-10.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1" + "value": "DE:244.1", + "description": "traffic_sign=DE:244.1 is displayed as \"There are no supplementary signs at this bicycle road.\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)" + "description": "Values of `maxspeed` are shown with \"The maximum speed on this road is {maxspeed} km/h\" and can be updated. The question is \"What is the maximum speed in this street?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=20 with a fixed text, namely 'The maximum speed is 20 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "20" + "value": "20", + "description": "maxspeed=20 is displayed as \"The maximum speed is 20 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=30 with a fixed text, namely 'The maximum speed is 30 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "30" + "value": "30", + "description": "maxspeed=30 is displayed as \"The maximum speed is 30 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=50 with a fixed text, namely 'The maximum speed is 50 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "50" + "value": "50", + "description": "maxspeed=50 is displayed as \"The maximum speed is 50 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=70 with a fixed text, namely 'The maximum speed is 70 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "70" + "value": "70", + "description": "maxspeed=70 is displayed as \"The maximum speed is 70 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=90 with a fixed text, namely 'The maximum speed is 90 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "90" + "value": "90", + "description": "maxspeed=90 is displayed as \"The maximum speed is 90 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:surface' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)" + "description": "Values of `cycleway:surface` are shown with \"This cyleway is made of {cycleway:surface}\" and can be updated. The question is \"What is the surface of the cycleway made from?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=unpaved with a fixed text, namely 'This cycleway is unpaved' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "unpaved" + "value": "unpaved", + "description": "cycleway:surface=unpaved is displayed as \"This cycleway is unpaved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=paved with a fixed text, namely 'This cycleway is paved' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "paved" + "value": "paved", + "description": "cycleway:surface=paved is displayed as \"This cycleway is paved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "asphalt" + "value": "asphalt", + "description": "cycleway:surface=asphalt is displayed as \"This cycleway is made of asphalt\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "paving_stones" + "value": "paving_stones", + "description": "cycleway:surface=paving_stones is displayed as \"This cycleway is made of smooth paving stones\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "concrete" + "value": "concrete", + "description": "cycleway:surface=concrete is displayed as \"This cycleway is made of concrete\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "cobblestone" + "value": "cobblestone", + "description": "cycleway:surface=cobblestone is displayed as \"This cycleway is made of cobblestone (unhewn or sett)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "unhewn_cobblestone" + "value": "unhewn_cobblestone", + "description": "cycleway:surface=unhewn_cobblestone is displayed as \"This cycleway is made of raw, natural cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "sett" + "value": "sett", + "description": "cycleway:surface=sett is displayed as \"This cycleway is made of flat, square cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "wood" + "value": "wood", + "description": "cycleway:surface=wood is displayed as \"This cycleway is made of wood\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "gravel" + "value": "gravel", + "description": "cycleway:surface=gravel is displayed as \"This cycleway is made of gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "cycleway:surface=fine_gravel is displayed as \"This cycleway is made of fine gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "pebblestone" + "value": "pebblestone", + "description": "cycleway:surface=pebblestone is displayed as \"This cycleway is made of pebblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "ground" + "value": "ground", + "description": "cycleway:surface=ground is displayed as \"This cycleway is made from raw ground\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'incline' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `incline` are shown with \"This road has an slope of {incline}\" and can be updated. The question is \"Does {title()} have an incline?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline= with a fixed text, namely 'There is (probably) no incline here' (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key incline.", - "value": "" + "description": "incline= is displayed as \"There is (probably) no incline here\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "up" + "value": "up", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "down" + "value": "down", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "excellent" + "value": "excellent", + "description": "cycleway:smoothness=excellent is displayed as \"Usable for thin rollers: rollerblade, skateboard\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "good" + "value": "good", + "description": "cycleway:smoothness=good is displayed as \"Usable for thin wheels: racing bike\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "intermediate" + "value": "intermediate", + "description": "cycleway:smoothness=intermediate is displayed as \"Usable for normal wheels: city bike, wheelchair, scooter\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "bad" + "value": "bad", + "description": "cycleway:smoothness=bad is displayed as \"Usable for robust wheels: trekking bike, car, rickshaw\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "very_bad" + "value": "very_bad", + "description": "cycleway:smoothness=very_bad is displayed as \"Usable for vehicles with high clearance: light duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "horrible" + "value": "horrible", + "description": "cycleway:smoothness=horrible is displayed as \"Usable for off-road vehicles: heavy duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "very_horrible" + "value": "very_horrible", + "description": "cycleway:smoothness=very_horrible is displayed as \"Usable for specialized off-road vehicles: tractor, ATV\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "impassable" + "value": "impassable", + "description": "cycleway:smoothness=impassable is displayed as \"Impassable / No wheeled vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `surface` are shown with \"This road is made of {surface}\" and can be updated. The question is \"What is the surface of the street made from?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=unpaved with a fixed text, namely 'This cycleway is unhardened' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "unpaved" + "value": "unpaved", + "description": "surface=unpaved is displayed as \"This cycleway is unhardened\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=paved with a fixed text, namely 'This cycleway is paved' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "paved" + "value": "paved", + "description": "surface=paved is displayed as \"This cycleway is paved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "asphalt" + "value": "asphalt", + "description": "surface=asphalt is displayed as \"This cycleway is made of asphalt\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "paving_stones" + "value": "paving_stones", + "description": "surface=paving_stones is displayed as \"This cycleway is made of smooth paving stones\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "concrete" + "value": "concrete", + "description": "surface=concrete is displayed as \"This cycleway is made of concrete\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "cobblestone" + "value": "cobblestone", + "description": "surface=cobblestone is displayed as \"This cycleway is made of cobblestone (unhewn or sett)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "unhewn_cobblestone" + "value": "unhewn_cobblestone", + "description": "surface=unhewn_cobblestone is displayed as \"This cycleway is made of raw, natural cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "sett" + "value": "sett", + "description": "surface=sett is displayed as \"This cycleway is made of flat, square cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "wood" + "value": "wood", + "description": "surface=wood is displayed as \"This cycleway is made of wood\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "gravel" + "value": "gravel", + "description": "surface=gravel is displayed as \"This cycleway is made of gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "surface=fine_gravel is displayed as \"This cycleway is made of fine gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "pebblestone" + "value": "pebblestone", + "description": "surface=pebblestone is displayed as \"This cycleway is made of pebblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "ground" + "value": "ground", + "description": "surface=ground is displayed as \"This cycleway is made from raw ground\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=no | highway=cycleway)", - "value": "excellent" + "value": "excellent", + "description": "smoothness=excellent is displayed as \"Usable for thin rollers: rollerblade, skateboard\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=no | highway=cycleway)", - "value": "good" + "value": "good", + "description": "smoothness=good is displayed as \"Usable for thin wheels: racing bike\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=no | highway=cycleway)", - "value": "intermediate" + "value": "intermediate", + "description": "smoothness=intermediate is displayed as \"Usable for normal wheels: city bike, wheelchair, scooter\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=no | highway=cycleway)", - "value": "bad" + "value": "bad", + "description": "smoothness=bad is displayed as \"Usable for robust wheels: trekking bike, car, rickshaw\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=no | highway=cycleway)", - "value": "very_bad" + "value": "very_bad", + "description": "smoothness=very_bad is displayed as \"Usable for vehicles with high clearance: light duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=no | highway=cycleway)", - "value": "horrible" + "value": "horrible", + "description": "smoothness=horrible is displayed as \"Usable for off-road vehicles: heavy duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=no | highway=cycleway)", - "value": "very_horrible" + "value": "very_horrible", + "description": "smoothness=very_horrible is displayed as \"Usable for specialized off-road vehicles: tractor, ATV\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=no | highway=cycleway)", - "value": "impassable" + "value": "impassable", + "description": "smoothness=impassable is displayed as \"Impassable / No wheeled vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "width", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)" + "description": "Values of `width` are shown with \"The carriage width of this road is {width}m\" and can be updated. The question is \"What is the carriage width of this road (in meters)?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#width", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D7" + "value": "BE:D7", + "description": "cycleway:traffic_sign=BE:D7 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign~^(BE:D7;.*)$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))" + "description": "cycleway:traffic_sign~^(BE:D7;.*)$ is displayed as \"Compulsory cycleway (with supplementary sign)
\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D9" + "value": "BE:D9", + "description": "cycleway:traffic_sign=BE:D9 is displayed as \"Segregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D09.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D10" + "value": "BE:D10", + "description": "cycleway:traffic_sign=BE:D10 is displayed as \"Unsegregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D10.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "none" + "value": "none", + "description": "cycleway:traffic_sign=none is displayed as \"No traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D7" + "value": "BE:D7", + "description": "traffic_sign=BE:D7 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign~^(BE:D7;.*)$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))" + "description": "traffic_sign~^(BE:D7;.*)$ is displayed as \"Compulsory cycleway (with supplementary sign)
\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D9" + "value": "BE:D9", + "description": "traffic_sign=BE:D9 is displayed as \"Segregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D09.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D10" + "value": "BE:D10", + "description": "traffic_sign=BE:D10 is displayed as \"Unsegregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D10.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G11 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G11" + "value": "NL:G11", + "description": "traffic_sign=NL:G11 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G11.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G12a with a fixed text, namely 'Compulsory (moped)cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G12a" + "value": "NL:G12a", + "description": "traffic_sign=NL:G12a is displayed as \"Compulsory (moped)cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G12a.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G13 with a fixed text, namely 'Non-compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G13" + "value": "NL:G13", + "description": "traffic_sign=NL:G13 is displayed as \"Non-compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G13.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "none" + "value": "none", + "description": "traffic_sign=none is displayed as \"No traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M6 with a fixed text, namely 'Mopeds must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M6" + "value": "BE:D7;BE:M6", + "description": "cycleway:traffic_sign=BE:D7;BE:M6 is displayed as \"Mopeds must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M6.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M13 with a fixed text, namely 'Speedpedelecs must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M13" + "value": "BE:D7;BE:M13", + "description": "cycleway:traffic_sign=BE:D7;BE:M13 is displayed as \"Speedpedelecs must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M13.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M14 with a fixed text, namely 'Mopeds and speedpedelecs must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M14" + "value": "BE:D7;BE:M14", + "description": "cycleway:traffic_sign=BE:D7;BE:M14 is displayed as \"Mopeds and speedpedelecs must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M14.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M7 with a fixed text, namely 'Mopeds are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M7" + "value": "BE:D7;BE:M7", + "description": "cycleway:traffic_sign=BE:D7;BE:M7 is displayed as \"Mopeds are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M7.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M15 with a fixed text, namely 'Speedpedelecs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M15" + "value": "BE:D7;BE:M15", + "description": "cycleway:traffic_sign=BE:D7;BE:M15 is displayed as \"Speedpedelecs are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M15.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M16 with a fixed text, namely 'Mopeds and speedpedelecs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M16" + "value": "BE:D7;BE:M16", + "description": "cycleway:traffic_sign=BE:D7;BE:M16 is displayed as \"Mopeds and speedpedelecs are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M16.svg" }, { "key": "cycleway:traffic_sign:supplementary", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign:supplementary=none with a fixed text, namely 'No supplementary traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "none" + "value": "none", + "description": "cycleway:traffic_sign:supplementary=none is displayed as \"No supplementary traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:buffer", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:buffer' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=track | cycleway=lane)" + "description": "Values of `cycleway:buffer` are shown with \"The buffer besides this cycleway is {cycleway:buffer} m\" and can be updated. The question is \"How wide is the gap between the cycleway and the road?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleways_and_roads_cycleway_buffer", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=track | cycleway=lane)", - "value": "dashed_line" + "value": "dashed_line", + "description": "cycleway:separation=dashed_line is displayed as \"This cycleway is separated by a dashed line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=track | cycleway=lane)", - "value": "solid_line" + "value": "solid_line", + "description": "cycleway:separation=solid_line is displayed as \"This cycleway is separated by a solid line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=track | cycleway=lane)", - "value": "parking_lane" + "value": "parking_lane", + "description": "cycleway:separation=parking_lane is displayed as \"This cycleway is separated by a parking lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if cycleway=track | cycleway=lane)", - "value": "kerb" + "value": "kerb", + "description": "cycleway:separation=kerb is displayed as \"This cycleway is separated by a kerb\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=cycleway | highway=path)", - "value": "dashed_line" + "value": "dashed_line", + "description": "separation=dashed_line is displayed as \"This cycleway is separated by a dashed line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=cycleway | highway=path)", - "value": "solid_line" + "value": "solid_line", + "description": "separation=solid_line is displayed as \"This cycleway is separated by a solid line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=cycleway | highway=path)", - "value": "parking_lane" + "value": "parking_lane", + "description": "separation=parking_lane is displayed as \"This cycleway is separated by a parking lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=cycleway | highway=path)", - "value": "kerb" + "value": "kerb", + "description": "separation=kerb is displayed as \"This cycleway is separated by a kerb\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Crossings showing features with this tag", - "value": "traffic_signals" + "value": "traffic_signals", + "description": "Features with this tag are displayed by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Crossings showing features with this tag", - "value": "crossing" + "value": "crossing", + "description": "Features with this tag are displayed by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { - "key": "id", - "description": "Layer 'Crossings' 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 'OSM for the blind') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "key": "crossing:signals", + "value": "no", + "description": "crossing:signals=no is displayed as \"There are no traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#signals", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { - "key": "image", - "description": "The layer 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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": "crossing:signals", + "value": "yes", + "description": "crossing:signals=yes is displayed as \"There are traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#signals", + "icon_url": "./assets/layers/crossings/traffic_lights.svg" }, { "key": "crossing", - "description": "Layer 'Crossings' shows crossing=uncontrolled with a fixed text, namely 'Crossing, without traffic lights' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "uncontrolled" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=traffic_signals with a fixed text, namely 'Crossing with traffic signals' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "traffic_signals" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "zebra" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "unmarked" + "value": "traffic_signals", + "description": "crossing=traffic_signals is displayed as \"There are traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#signals", + "icon_url": "./assets/layers/crossings/traffic_lights.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows and asks freeform values for key 'crossing:markings' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `crossing:markings` are shown with \"This crossing has {crossing:markings} markings\" and can be updated. The question is \"What kind of markings does this crossing have?\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=no with a fixed text, namely 'This crossing has no markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "crossing:markings=no is displayed as \"This crossing has no markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/crossing_unmarked.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra with a fixed text, namely 'This crossing has zebra markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "zebra" + "value": "zebra", + "description": "crossing:markings=zebra is displayed as \"This crossing has zebra markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=yes with a fixed text, namely 'This crossing has markings of an unknown type' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "crossing:markings=yes is displayed as \"This crossing has markings of an unknown type\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=lines with a fixed text, namely 'This crossings has lines on either side of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "lines" + "value": "lines", + "description": "crossing:markings=lines is displayed as \"This crossings has lines on either side of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_lines.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder with a fixed text, namely 'This crossing has lines on either side of the crossing, along with bars connecting them' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "ladder" + "value": "ladder", + "description": "crossing:markings=ladder is displayed as \"This crossing has lines on either side of the crossing, along with bars connecting them\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_ladder.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=dashes with a fixed text, namely 'This crossing has dashed lines on either sides of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "dashes" + "value": "dashes", + "description": "crossing:markings=dashes is displayed as \"This crossing has dashed lines on either sides of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_dashes.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=dots with a fixed text, namely 'This crossing has dotted lines on either sides of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "dots" + "value": "dots", + "description": "crossing:markings=dots is displayed as \"This crossing has dotted lines on either sides of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_dots.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=surface with a fixed text, namely 'This crossing is marked by using a different coloured surface' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "surface" + "value": "surface", + "description": "crossing:markings=surface is displayed as \"This crossing is marked by using a different coloured surface\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_surface.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder:skewed with a fixed text, namely 'This crossing has lines on either side of the crossing, along with angled bars connecting them' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "ladder:skewed" + "value": "ladder:skewed", + "description": "crossing:markings=ladder:skewed is displayed as \"This crossing has lines on either side of the crossing, along with angled bars connecting them\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_ladder_skewed.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:paired with a fixed text, namely 'This crossing has zebra markings with an interruption in every bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "zebra:paired" + "value": "zebra:paired", + "description": "crossing:markings=zebra:paired is displayed as \"This crossing has zebra markings with an interruption in every bar\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:bicolour with a fixed text, namely 'This crossing has zebra markings in alternating colours' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "zebra:bicolour" + "value": "zebra:bicolour", + "description": "crossing:markings=zebra:bicolour is displayed as \"This crossing has zebra markings in alternating colours\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra_bicolour.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:double with a fixed text, namely 'This crossing has double zebra markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "zebra:double" + "value": "zebra:double", + "description": "crossing:markings=zebra:double is displayed as \"This crossing has double zebra markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra_double.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=pictograms with a fixed text, namely 'This crossing has pictograms on the road' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "pictograms" + "value": "pictograms", + "description": "crossing:markings=pictograms is displayed as \"This crossing has pictograms on the road\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder:paired with a fixed text, namely 'This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "ladder:paired" + "value": "ladder:paired", + "description": "crossing:markings=ladder:paired is displayed as \"This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=lines:paired with a fixed text, namely 'This crossing has double lines on either side of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "lines:paired" + "value": "lines:paired", + "description": "crossing:markings=lines:paired is displayed as \"This crossing has double lines on either side of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_lines_paired.png" }, { "key": "crossing:island", - "description": "Layer 'Crossings' shows crossing:island=yes with a fixed text, namely 'This crossing has an island in the middle' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "yes" + "value": "yes", + "description": "crossing:island=yes is displayed as \"This crossing has an island in the middle\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_has_island", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:island", - "description": "Layer 'Crossings' shows crossing:island=no with a fixed text, namely 'This crossing does not have an island in the middle' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "no" + "value": "no", + "description": "crossing:island=no is displayed as \"This crossing does not have an island in the middle\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_has_island", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=yes with a fixed text, namely 'This crossing has tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "yes" + "value": "yes", + "description": "tactile_paving=yes is displayed as \"This crossing has tactile paving\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=no with a fixed text, namely 'This crossing does not have tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "no" + "value": "no", + "description": "tactile_paving=no is displayed as \"This crossing does not have tactile paving\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=incorrect with a fixed text, namely 'This crossing has tactile paving, but is not correct' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=crossing)", - "value": "incorrect" + "value": "incorrect", + "description": "tactile_paving=incorrect is displayed as \"This crossing has tactile paving, but is not correct\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" + }, + { + "key": "tactile_paving", + "value": "partial", + "description": "tactile_paving=partial is displayed as \"This crrosing has tactile paving, but only on one side\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "button_operated", - "description": "Layer 'Crossings' shows button_operated=yes with a fixed text, namely 'This traffic light has a button to request green light' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=traffic_signals | crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "button_operated=yes is displayed as \"This traffic light has a button to request green light\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_button", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "button_operated", - "description": "Layer 'Crossings' shows button_operated=no with a fixed text, namely 'This traffic light does not have a button to request green light' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=traffic_signals | crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "button_operated=no is displayed as \"This traffic light does not have a button to request green light\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_button", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=yes with a fixed text, namely 'This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:sound=yes is displayed as \"This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=no with a fixed text, namely 'This traffic light does not have sound signals to help crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:sound=no is displayed as \"This traffic light does not have sound signals to help crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=locate with a fixed text, namely 'This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals)", - "value": "locate" + "value": "locate", + "description": "traffic_signals:sound=locate is displayed as \"This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=walk with a fixed text, namely 'This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals)", - "value": "walk" + "value": "walk", + "description": "traffic_signals:sound=walk is displayed as \"This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:vibration", - "description": "Layer 'Crossings' shows traffic_signals:vibration=yes with a fixed text, namely 'The button for this traffic light has a vibration signal to indicate that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals & button_operated=yes)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:vibration=yes is displayed as \"The button for this traffic light has a vibration signal to indicate that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_vibration", + "icon_url": "./assets/layers/crossings/Vibrating_button_illustration.jpg" }, { "key": "traffic_signals:vibration", - "description": "Layer 'Crossings' shows traffic_signals:vibration=no with a fixed text, namely 'The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals & button_operated=yes)", - "value": "no" + "value": "no", + "description": "traffic_signals:vibration=no is displayed as \"The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_vibration", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:arrow", - "description": "Layer 'Crossings' shows traffic_signals:arrow=yes with a fixed text, namely 'This traffic light has an arrow pointing in the direction of crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:arrow=yes is displayed as \"This traffic light has an arrow pointing in the direction of crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_arrow", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:arrow", - "description": "Layer 'Crossings' shows traffic_signals:arrow=no with a fixed text, namely 'This traffic light does not have an arrow pointing in the direction of crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:arrow=no is displayed as \"This traffic light does not have an arrow pointing in the direction of crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_arrow", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:minimap", - "description": "Layer 'Crossings' shows traffic_signals:minimap=yes with a fixed text, namely 'This traffic light has a tactile map showing the layout of the crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:minimap=yes is displayed as \"This traffic light has a tactile map showing the layout of the crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_minimap", + "icon_url": "./assets/layers/crossings/180px-Trairvoja_mapeto.jpg" }, { "key": "traffic_signals:minimap", - "description": "Layer 'Crossings' shows traffic_signals:minimap=no with a fixed text, namely 'This traffic light does not have a tactile map showing the layout of the crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:minimap=no is displayed as \"This traffic light does not have a tactile map showing the layout of the crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_minimap", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "red_turn:right:bicycle=yes is displayed as \"A cyclist can turn right if the light is red\" by layers Crossings, Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_right_turn_through_red", + "icon_url": "./assets/layers/crossings/Belgian_road_sign_B22.svg" }, { "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=traffic_signals)", - "value": "yes" - }, - { - "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=no with a fixed text, namely 'A cyclist can not turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=traffic_signals)", - "value": "no" + "value": "no", + "description": "red_turn:right:bicycle=no is displayed as \"A cyclist can not turn right if the light is red\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_right_turn_through_red", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "red_turn:straight:bicycle=yes is displayed as \"A cyclist can go straight on if the light is red\" by layers Crossings, Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_continue_through_red", + "icon_url": "./assets/layers/crossings/Belgian_road_sign_B23.svg" }, { "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=traffic_signals)", - "value": "yes" - }, - { - "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if highway=traffic_signals)", - "value": "no" + "value": "no", + "description": "red_turn:straight:bicycle=no is displayed as \"A cyclist can not go straight on if the light is red\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_continue_through_red", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "barrier", - "description": "The MapComplete theme OSM for the blind has a layer Kerbs showing features with this tag", - "value": "kerb" - }, - { - "key": "id", - "description": "Layer 'Kerbs' 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 'OSM for the blind') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "kerb", + "description": "Features with this tag are displayed by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=raised with a fixed text, namely 'This kerb is raised (>3 cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "raised" + "value": "raised", + "description": "kerb=raised is displayed as \"This kerb is raised (>3 cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/raised.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=lowered with a fixed text, namely 'This kerb is lowered (~3 cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "lowered" + "value": "lowered", + "description": "kerb=lowered is displayed as \"This kerb is lowered (~3 cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/lowered.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=flush with a fixed text, namely 'This kerb is flush (~0cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "flush" + "value": "flush", + "description": "kerb=flush is displayed as \"This kerb is flush (~0cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/flush.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=no with a fixed text, namely 'There is no kerb here' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "no" + "value": "no", + "description": "kerb=no is displayed as \"There is no kerb here\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/no.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=yes with a fixed text, namely 'There is a kerb of unknown height' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "yes" + "value": "yes", + "description": "kerb=yes is displayed as \"There is a kerb of unknown height\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=yes with a fixed text, namely 'This kerb has tactile paving.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "yes" + "value": "yes", + "description": "tactile_paving=yes is displayed as \"This kerb has tactile paving.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=no with a fixed text, namely 'This kerb does not have tactile paving.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "no" + "value": "no", + "description": "tactile_paving=no is displayed as \"This kerb does not have tactile paving.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=contrasted with a fixed text, namely 'This kerb has tactile paving, which has a contrasting colour to the surrounding pavement.' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "contrasted" + "value": "contrasted", + "description": "tactile_paving=contrasted is displayed as \"This kerb has tactile paving, which has a contrasting colour to the surrounding pavement.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=incorrect with a fixed text, namely 'This kerb has tactile paving, but it is incorrect.' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _geometry:type=Point)", - "value": "incorrect" + "value": "incorrect", + "description": "tactile_paving=incorrect is displayed as \"This kerb has tactile paving, but it is incorrect.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows and asks freeform values for key 'tactile_paving:colour' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if tactile_paving!=no & _geometry:type=Point)" + "description": "Values of `tactile_paving:colour` are shown with \"The tactile paving is coloured {tactile_paving:colour}.\" and can be updated. The question is \"What is the colour of the tactile paving?\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=yellow with a fixed text, namely 'The tactile paving is yellow.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "yellow" + "value": "yellow", + "description": "tactile_paving:colour=yellow is displayed as \"The tactile paving is yellow.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=red with a fixed text, namely 'The tactile paving is red.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "red" + "value": "red", + "description": "tactile_paving:colour=red is displayed as \"The tactile paving is red.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=white with a fixed text, namely 'The tactile paving is white.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "white" + "value": "white", + "description": "tactile_paving:colour=white is displayed as \"The tactile paving is white.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=grey with a fixed text, namely 'The tactile paving is grey.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "grey" + "value": "grey", + "description": "tactile_paving:colour=grey is displayed as \"The tactile paving is grey.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "kerb:height", - "description": "Layer 'Kerbs' shows and asks freeform values for key 'kerb:height' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `kerb:height` are shown with \"Kerb height: {kerb:height}\" and can be updated. The question is \"What is the height of this kerb?\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_height", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "kerb:height", - "description": "Layer 'Kerbs' shows kerb:height=0 with a fixed text, namely 'This kerb is flush and is lower than 1cm.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "0" + "value": "0", + "description": "kerb:height=0 is displayed as \"This kerb is flush and is lower than 1cm.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_height", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Transit Stops showing features with this tag", - "value": "bus_stop" - }, - { - "key": "id", - "description": "Layer 'Transit Stops' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "bus_stop", + "description": "Features with this tag are displayed by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "name", - "description": "Layer 'Transit Stops' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `name` are shown with \"This stop is called {name}\" and can be updated. The question is \"What is the name of this stop?\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#stop_name", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "noname", - "description": "Layer 'Transit Stops' shows noname=yes & name= with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "noname=yes & name= is displayed as \"This stop has no name\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#stop_name", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "name", - "description": "Layer 'Transit Stops' shows noname=yes & name= with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key name.", - "value": "" - }, - { - "key": "image", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "noname=yes & name= is displayed as \"This stop has no name\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#stop_name", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "shelter", - "description": "Layer 'Transit Stops' shows shelter=yes with a fixed text, namely 'This stop has a shelter' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "shelter=yes is displayed as \"This stop has a shelter\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#shelter", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "shelter", - "description": "Layer 'Transit Stops' shows shelter=no with a fixed text, namely 'This stop does not have a shelter' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "shelter=no is displayed as \"This stop does not have a shelter\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#shelter", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "shelter", - "description": "Layer 'Transit Stops' shows shelter=separate with a fixed text, namely 'This stop has a shelter, that's separately mapped' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "separate" + "value": "separate", + "description": "shelter=separate is displayed as \"This stop has a shelter, that's separately mapped\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#shelter", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bench", - "description": "Layer 'Transit Stops' shows bench=yes with a fixed text, namely 'This stop has a bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "bench=yes is displayed as \"This stop has a bench\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bench", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bench", - "description": "Layer 'Transit Stops' shows bench=no with a fixed text, namely 'This stop does not have a bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "bench=no is displayed as \"This stop does not have a bench\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bench", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bench", - "description": "Layer 'Transit Stops' shows bench=separate with a fixed text, namely 'This stop has a bench, that's separately mapped' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "separate" + "value": "separate", + "description": "bench=separate is displayed as \"This stop has a bench, that's separately mapped\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bench", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bin", - "description": "Layer 'Transit Stops' shows bin=yes with a fixed text, namely 'This stop has a bin' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "bin=yes is displayed as \"This stop has a bin\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bin", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bin", - "description": "Layer 'Transit Stops' shows bin=no with a fixed text, namely 'This stop does not have a bin' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "bin=no is displayed as \"This stop does not have a bin\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bin", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bin", - "description": "Layer 'Transit Stops' shows bin=separate with a fixed text, namely 'This stop has a bin, that's separately mapped' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "separate" + "value": "separate", + "description": "bin=separate is displayed as \"This stop has a bin, that's separately mapped\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bin", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wheelchair", - "description": "Layer 'Transit Stops' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#wheelchair_access", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wheelchair", - "description": "Layer 'Transit Stops' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#wheelchair_access", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wheelchair", - "description": "Layer 'Transit Stops' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#wheelchair_access", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wheelchair", - "description": "Layer 'Transit Stops' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#wheelchair_access", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "tactile_paving", - "description": "Layer 'Transit Stops' shows tactile_paving=yes with a fixed text, namely 'This stop has tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "tactile_paving=yes is displayed as \"This stop has tactile paving\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#tactile_paving", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "tactile_paving", - "description": "Layer 'Transit Stops' shows tactile_paving=no with a fixed text, namely 'This stop does not have tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "tactile_paving=no is displayed as \"This stop does not have tactile paving\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#tactile_paving", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "lit", - "description": "Layer 'Transit Stops' shows lit=yes with a fixed text, namely 'This stop is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This stop is lit\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#lit", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "lit", - "description": "Layer 'Transit Stops' shows lit=no with a fixed text, namely 'This stop is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "lit=no is displayed as \"This stop is not lit\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#lit", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=yes with a fixed text, namely 'This stop has a departures board of unknown type' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "departures_board=yes is displayed as \"This stop has a departures board of unknown type\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=realtime with a fixed text, namely 'This stop has a board showing realtime departure information' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "realtime" + "value": "realtime", + "description": "departures_board=realtime is displayed as \"This stop has a board showing realtime departure information\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "passenger_information_display", - "description": "Layer 'Transit Stops' shows passenger_information_display=yes with a fixed text, namely 'This stop has a board showing realtime departure information' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "passenger_information_display=yes is displayed as \"This stop has a board showing realtime departure information\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=timetable with a fixed text, namely 'This stop has a timetable showing regular departures' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "timetable" + "value": "timetable", + "description": "departures_board=timetable is displayed as \"This stop has a timetable showing regular departures\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=interval with a fixed text, namely 'This stop has a timetable containing just the interval between departures' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "interval" + "value": "interval", + "description": "departures_board=interval is displayed as \"This stop has a timetable containing just the interval between departures\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=no with a fixed text, namely 'This stop does not have a departures board' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "departures_board=no is displayed as \"This stop does not have a departures board\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Elevator showing features with this tag", - "value": "elevator" - }, - { - "key": "id", - "description": "Layer 'Elevator' 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 'OSM for the blind') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "elevator", + "description": "Features with this tag are displayed by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "level", - "description": "Layer 'Elevator' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"This elevator goes to floors {level}\" and can be updated. The question is \"What levels does this elevator go to?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#multilevels", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "location", - "description": "Layer 'Elevator' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Elevator, Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#multilevels", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "level", - "description": "Layer 'Elevator' 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 'OSM for the blind') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Elevator, Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#multilevels", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "level", - "description": "Layer 'Elevator' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Elevator, Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#multilevels", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "level", - "description": "Layer 'Elevator' 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 'OSM for the blind') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Elevator, Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#multilevels", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "level", - "description": "Layer 'Elevator' 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 'OSM for the blind') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Elevator, Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#multilevels", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=broken with a fixed text, namely 'This elevator is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This elevator is broken\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "close:red" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=closed with a fixed text, namely 'This elevator is closed e.g. because renovation works are going on' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This elevator is closed e.g. because renovation works are going on\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "invalid:red" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=ok with a fixed text, namely 'This elevator works' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "ok" + "value": "ok", + "description": "operational_status=ok is displayed as \"This elevator works\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status= with a fixed text, namely 'This elevator works' (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= is displayed as \"This elevator works\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "door:width", - "description": "Layer 'Elevator' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `door:width` are shown with \"This elevator's doors have a width of {canonical(door:width)}\" and can be updated. The question is \"What is the width of this elevator's entrance?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#door_width", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "shape", - "description": "Layer 'Elevator' shows shape=rectangular with a fixed text, namely 'This elevator has a rectangular shape' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "rectangular" + "value": "rectangular", + "description": "shape=rectangular is displayed as \"This elevator has a rectangular shape\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_shape", + "icon_url": "./assets/svg/square.svg" }, { "key": "shape", - "description": "Layer 'Elevator' shows shape=circular with a fixed text, namely 'This elevator has a circular shape' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "circular" + "value": "circular", + "description": "shape=circular is displayed as \"This elevator has a circular shape\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_shape", + "icon_url": "./assets/svg/circle.svg" }, { "key": "width", - "description": "Layer 'Elevator' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if shape= | shape=rectangular)" + "description": "Values of `width` are shown with \"This elevator has a width of {canonical(width)}\" and can be updated. The question is \"What is the width of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_width", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "length", - "description": "Layer 'Elevator' shows and asks freeform values for key 'length' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if shape= | shape=rectangular)" + "description": "Values of `length` are shown with \"This elevator has a depth of {canonical(length)}\" and can be updated. The question is \"What is the depth of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_depth", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "diameter", - "description": "Layer 'Elevator' shows and asks freeform values for key 'diameter' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if shape=circular)" + "description": "Values of `diameter` are shown with \"This elevator has a diameter of {canonical(diameter)}\" and can be updated. The question is \"What is the diameter of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_diameter", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" + }, + { + "key": "handrail", + "value": "yes", + "description": "handrail=yes is displayed as \"This elevator has a handrail in the cabin\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#handrail", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" + }, + { + "key": "handrail", + "value": "no", + "description": "handrail=no is displayed as \"This elevator does not have a handrail\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#handrail", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "hearing_loop", - "description": "Layer 'Elevator' shows hearing_loop=yes with a fixed text, namely 'This place has an audio induction loop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "hearing_loop=yes is displayed as \"This place has an audio induction loop\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop.svg" }, { "key": "hearing_loop", - "description": "Layer 'Elevator' shows hearing_loop=no with a fixed text, namely 'This place does not have an audio induction loop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "hearing_loop=no is displayed as \"This place does not have an audio induction loop\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop_missing.svg" }, { "key": "tactile_writing:braille", - "description": "Layer 'Elevator' shows tactile_writing:braille=yes with a fixed text, namely 'This elevator has tactile writing in Braille' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "tactile_writing:braille=yes is displayed as \"This elevator has tactile writing in Braille\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#tactile_writing_available", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "tactile_writing:braille", - "description": "Layer 'Elevator' shows tactile_writing:braille=no with a fixed text, namely 'This elevator does not have tactile writing' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "tactile_writing:braille=no is displayed as \"This elevator does not have tactile writing\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#tactile_writing_available", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "speech_output", - "description": "Layer 'Elevator' shows speech_output=yes with a fixed text, namely 'This elevator has speech output' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "speech_output=yes is displayed as \"This elevator has speech output\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#speech_output_available", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "speech_output", - "description": "Layer 'Elevator' shows speech_output=no with a fixed text, namely 'This elevator does not have speech output' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "speech_output=no is displayed as \"This elevator does not have speech output\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#speech_output_available", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "highway", - "description": "The MapComplete theme OSM for the blind has a layer Stairs showing features with this tag", - "value": "steps" - }, - { - "key": "id", - "description": "Layer 'Stairs' 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 'OSM for the blind') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Stairs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Stairs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Stairs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Stairs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Stairs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "steps", + "description": "Features with this tag are displayed by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "level", - "description": "Layer 'Stairs' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Stairs' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Stairs' 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 'OSM for the blind') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Stairs' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Stairs' 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 'OSM for the blind') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Stairs' 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 'OSM for the blind') (This is only shown if repeat_on=)", - "value": "-1" + "description": "Values of `level` are shown with \"These stairs are between the levels {level}\" and can be updated. The question is \"Between which levels are these stairs?\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#multilevels", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "conveying", - "description": "Layer 'Stairs' shows conveying=yes with a fixed text, namely 'This is an escalator' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "conveying=yes is displayed as \"This is an escalator\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#conveying", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "conveying", - "description": "Layer 'Stairs' shows conveying=forward | conveying=backward with a fixed text, namely 'This is an escalator moving in the direction of the arrows' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "forward" + "value": "forward", + "description": "conveying=forward | conveying=backward is displayed as \"This is an escalator moving in the direction of the arrows\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#conveying", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "conveying", - "description": "Layer 'Stairs' shows conveying=forward | conveying=backward with a fixed text, namely 'This is an escalator moving in the direction of the arrows' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "backward" + "value": "backward", + "description": "conveying=forward | conveying=backward is displayed as \"This is an escalator moving in the direction of the arrows\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#conveying", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "conveying", - "description": "Layer 'Stairs' shows conveying=reversible with a fixed text, namely 'This is a reversible escalator' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "reversible" + "value": "reversible", + "description": "conveying=reversible is displayed as \"This is a reversible escalator\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#conveying", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "conveying", - "description": "Layer 'Stairs' shows conveying=no with a fixed text, namely 'This is not an escalator' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "conveying=no is displayed as \"This is not an escalator\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#conveying", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "conveying", - "description": "Layer 'Stairs' shows conveying= with a fixed text, namely 'This is not an escalator' (in the mapcomplete.org theme 'OSM for the blind') Picking this answer will delete the key conveying.", - "value": "" + "description": "conveying= is displayed as \"This is not an escalator\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#conveying", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "handrail", - "description": "Layer 'Stairs' shows handrail=yes with a fixed text, namely 'These stairs have a handrail' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if conveying!=yes)", - "value": "yes" + "value": "yes", + "description": "handrail=yes is displayed as \"These stairs have a handrail\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#handrail", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "handrail", - "description": "Layer 'Stairs' shows handrail=no with a fixed text, namely 'These stairs do not have a handrail' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if conveying!=yes)", - "value": "no" + "value": "no", + "description": "handrail=no is displayed as \"These stairs do not have a handrail\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#handrail", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "tactile_writing", - "description": "Layer 'Stairs' shows tactile_writing=yes with a fixed text, namely 'There is tactile writing on the handrail' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if handrail=yes & conveying!=yes)", - "value": "yes" + "value": "yes", + "description": "tactile_writing=yes is displayed as \"There is tactile writing on the handrail\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#tactile_writing", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "tactile_writing", - "description": "Layer 'Stairs' shows tactile_writing=no with a fixed text, namely 'There is no tactile writing on the handrail' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if handrail=yes & conveying!=yes)", - "value": "no" + "value": "no", + "description": "tactile_writing=no is displayed as \"There is no tactile writing on the handrail\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#tactile_writing", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "ramp:bicycle", - "description": "Layer 'Stairs' shows ramp:bicycle=yes with a fixed text, namely 'There is a ramp for bicycles here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if conveying!=yes)", - "value": "yes" + "value": "yes", + "description": "ramp:bicycle=yes is displayed as \"There is a ramp for bicycles here\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#ramp", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "ramp:wheelchair", - "description": "Layer 'Stairs' shows ramp:wheelchair=yes with a fixed text, namely 'There is a ramp for wheelchairs here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if conveying!=yes)", - "value": "yes" + "value": "yes", + "description": "ramp:wheelchair=yes is displayed as \"There is a ramp for wheelchairs here\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#ramp", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "ramp", - "description": "Layer 'Stairs' shows ramp=separate with a fixed text, namely 'There is ramp for wheelchairs here, but it is shown separately on the map' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if conveying!=yes)", - "value": "separate" + "value": "separate", + "description": "ramp=separate is displayed as \"There is ramp for wheelchairs here, but it is shown separately on the map\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#ramp", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "ramp:stroller", - "description": "Layer 'Stairs' shows ramp:stroller=yes with a fixed text, namely 'There is a ramp for strollers here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if conveying!=yes)", - "value": "yes" + "value": "yes", + "description": "ramp:stroller=yes is displayed as \"There is a ramp for strollers here\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#ramp", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "ramp", - "description": "Layer 'Stairs' shows ramp=no with a fixed text, namely 'There is no ramp at these stairs' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if conveying!=yes)", - "value": "no" + "value": "no", + "description": "ramp=no is displayed as \"There is no ramp at these stairs\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#ramp", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "incline", - "description": "Layer 'Stairs' shows and asks freeform values for key 'incline' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `incline` are shown with \"These stairs have an incline of {incline}\" and can be updated. The question is \"What is the incline of these stairs?\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#incline", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "incline", - "description": "Layer 'Stairs' shows incline=up with a fixed text, namely 'The upward direction is {direction_absolute()}' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "up" + "value": "up", + "description": "incline=up is displayed as \"The upward direction is {direction_absolute()}\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#incline", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "incline", - "description": "Layer 'Stairs' shows incline=down with a fixed text, namely 'The downward direction is {direction_absolute()}' (in the mapcomplete.org theme 'OSM for the blind')", - "value": "down" + "value": "down", + "description": "incline=down is displayed as \"The downward direction is {direction_absolute()}\" by layer Stairs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/stairs.md#incline", + "icon_url": "./assets/layers/stairs/stairs.svg" }, { "key": "information", - "description": "The MapComplete theme OSM for the blind has a layer Tactile Maps showing features with this tag", - "value": "tactile_map" - }, - { - "key": "id", - "description": "Layer 'Tactile Maps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "tactile_map", + "description": "Features with this tag are displayed by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "blind:description:en", - "description": "Layer 'Tactile Maps' shows and asks freeform values for key 'blind:description:en' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `blind:description:en` are shown with \"Description: {blind:description:en}.\" and can be updated. The question is \"What does this tactile map show?\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#description", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "braille", - "description": "Layer 'Tactile Maps' shows braille=yes with a fixed text, namely 'This tactile map has braille text.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "braille=yes is displayed as \"This tactile map has braille text.\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#braille", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "braille", - "description": "Layer 'Tactile Maps' shows braille=no with a fixed text, namely 'This tactile map does not have braille text.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "braille=no is displayed as \"This tactile map does not have braille text.\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#braille", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "embossed_letters", - "description": "Layer 'Tactile Maps' shows embossed_letters=yes with a fixed text, namely 'This tactile map has embossed letters.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "embossed_letters=yes is displayed as \"This tactile map has embossed letters.\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#embossed_letters", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "embossed_letters", - "description": "Layer 'Tactile Maps' shows embossed_letters=no with a fixed text, namely 'This tactile map does not have embossed letters.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "embossed_letters=no is displayed as \"This tactile map does not have embossed letters.\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#embossed_letters", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "website", - "description": "Layer 'Tactile Maps' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Tactile Maps' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "information", - "description": "The MapComplete theme OSM for the blind has a layer Tactile Models showing features with this tag", - "value": "tactile_model" - }, - { - "key": "id", - "description": "Layer 'Tactile Models' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'OSM for the blind') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "tactile_model", + "description": "Features with this tag are displayed by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "blind:description:en", - "description": "Layer 'Tactile Models' shows and asks freeform values for key 'blind:description:en' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `blind:description:en` are shown with \"Description: {blind:description:en}.\" and can be updated. The question is \"What does this tactile model show?\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#description", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "braille", - "description": "Layer 'Tactile Models' shows braille=yes with a fixed text, namely 'There is a braille description.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "braille=yes is displayed as \"There is a braille description.\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#braille", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "braille", - "description": "Layer 'Tactile Models' shows braille=no with a fixed text, namely 'There is no braille description.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "braille=no is displayed as \"There is no braille description.\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#braille", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "embossed_letters", - "description": "Layer 'Tactile Models' shows embossed_letters=yes with a fixed text, namely 'There are embossed letters describing the model.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "yes" + "value": "yes", + "description": "embossed_letters=yes is displayed as \"There are embossed letters describing the model.\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#embossed_letters", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "embossed_letters", - "description": "Layer 'Tactile Models' shows embossed_letters=no with a fixed text, namely 'There are no embossed letters describing the model.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OSM for the blind')", - "value": "no" + "value": "no", + "description": "embossed_letters=no is displayed as \"There are no embossed letters describing the model.\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#embossed_letters", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "scale", - "description": "Layer 'Tactile Models' shows and asks freeform values for key 'scale' (in the mapcomplete.org theme 'OSM for the blind')" - }, - { - "key": "website", - "description": "Layer 'Tactile Models' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OSM for the blind')" - }, - { - "key": "contact:website", - "description": "Layer 'Tactile Models' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OSM for the blind')" + "description": "Values of `scale` are shown with \"The scale of this model is {scale}.\" and can be updated. The question is \"What scale is the model?\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#scale", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_bookcases.json b/Docs/TagInfo/mapcomplete_bookcases.json index 76b9c73de8..ff38ebd3e0 100644 --- a/Docs/TagInfo/mapcomplete_bookcases.json +++ b/Docs/TagInfo/mapcomplete_bookcases.json @@ -7,134 +7,186 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/bookcases/bookcase.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Public bookcases has a layer Bookcases showing features with this tag", - "value": "public_bookcase" + "value": "public_bookcase", + "description": "Features with this tag are displayed by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "id", - "description": "Layer 'Bookcases' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Public bookcases') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "panoramax", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "mapillary", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "wikidata", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "wikipedia", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "name", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Public bookcases')" + "description": "Values of `name` are shown with \"The name of this bookcase is {name}\" and can be updated. The question is \"What is the name of this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "noname", - "description": "Layer 'Bookcases' shows noname=yes & name= with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')", - "value": "yes" + "value": "yes", + "description": "noname=yes & name= is displayed as \"This bookcase doesn't have a name\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "name", - "description": "Layer 'Bookcases' shows noname=yes & name= with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') Picking this answer will delete the key name.", - "value": "" + "description": "noname=yes & name= is displayed as \"This bookcase doesn't have a name\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "capacity", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Public bookcases')" + "description": "Values of `capacity` are shown with \"{capacity} books fit in this bookcase\" and can be updated. The question is \"How many books fit into this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_capacity", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "books", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'books' (in the mapcomplete.org theme 'Public bookcases')" + "description": "Values of `books` are shown with \"This place mostly serves {books}\" and can be updated. The question is \"What kind of books can be found in this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "books", - "description": "Layer 'Bookcases' shows books=children with a fixed text, namely 'Mostly children books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')", - "value": "children" + "value": "children", + "description": "books=children is displayed as \"Mostly children books\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "books", - "description": "Layer 'Bookcases' shows books=adults with a fixed text, namely 'Mostly books for adults' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')", - "value": "adults" + "value": "adults", + "description": "books=adults is displayed as \"Mostly books for adults\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "indoor", - "description": "Layer 'Bookcases' shows indoor=yes with a fixed text, namely 'This bookcase is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This bookcase is located indoors\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "indoor", - "description": "Layer 'Bookcases' shows indoor=no with a fixed text, namely 'This bookcase is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This bookcase is located outdoors\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "indoor", - "description": "Layer 'Bookcases' shows indoor= with a fixed text, namely 'This bookcase is located outdoors' (in the mapcomplete.org theme 'Public bookcases') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= is displayed as \"This bookcase is located outdoors\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "access", - "description": "Layer 'Bookcases' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') (This is only shown if indoor=yes)", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Publicly accessible\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_accessible", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "access", - "description": "Layer 'Bookcases' shows access=customers with a fixed text, namely 'Only accessible to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') (This is only shown if indoor=yes)", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only accessible to customers\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_accessible", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "operator", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Public bookcases')" + "description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who maintains this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_operator", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "brand", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Public bookcases') (This is only shown if ref=)" + "description": "Values of `brand` are shown with \"This public bookcase is part of {brand}\" and can be updated. The question is \"Is this public bookcase part of a bigger network?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_brand", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "nobrand", - "description": "Layer 'Bookcases' shows nobrand=yes with a fixed text, namely 'This public bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') (This is only shown if ref=)", - "value": "yes" + "value": "yes", + "description": "nobrand=yes is displayed as \"This public bookcase is not part of a bigger network\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_brand", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "ref", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Public bookcases') (This is only shown if brand~.+)" + "description": "Values of `ref` are shown with \"The reference number of this public bookcase within {brand} is {ref}\" and can be updated. The question is \"What is the reference number of this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "nobrand", - "description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') (This is only shown if brand~.+)", - "value": "yes" + "value": "yes", + "description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "brand", - "description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') Picking this answer will delete the key brand. (This is only shown if brand~.+)", - "value": "" + "description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "ref", - "description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') Picking this answer will delete the key ref. (This is only shown if brand~.+)", - "value": "" + "description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "start_date", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Public bookcases')" + "description": "Values of `start_date` are shown with \"Installed on {start_date}\" and can be updated. The question is \"When was this public bookcase installed?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_start_date", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "website", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Public bookcases')" + "description": "Values of `website` are shown with \"{link(More info on the website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_website", + "icon_url": "./assets/themes/bookcases/bookcase.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json b/Docs/TagInfo/mapcomplete_cafes_and_pubs.json index 5482ee4b07..ebeb156429 100644 --- a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json +++ b/Docs/TagInfo/mapcomplete_cafes_and_pubs.json @@ -7,614 +7,563 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/cafe_pub/pub.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag", - "value": "bar" + "value": "bar", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag", - "value": "pub" + "value": "pub", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag", - "value": "cafe" + "value": "cafe", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag", - "value": "biergarten" + "value": "biergarten", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag", - "value": "nightclub" + "value": "nightclub", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "id", - "description": "Layer 'Cafés and pubs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "panoramax", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "mapillary", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "wikidata", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "wikipedia", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "location", - "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Cafés and pubs') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "name", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "Values of `name` are shown with \"This business is named {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Name", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=pub with a fixed text, namely 'A pub, mostly for drinking beers in a warm, relaxed interior' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "pub" + "value": "pub", + "description": "amenity=pub is displayed as \"A pub, mostly for drinking beers in a warm, relaxed interior\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=bar with a fixed text, namely 'A more modern and commercial bar, possibly with a music and light installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "bar" + "value": "bar", + "description": "amenity=bar is displayed as \"A more modern and commercial bar, possibly with a music and light installation\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=cafe with a fixed text, namely 'A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "cafe" + "value": "cafe", + "description": "amenity=cafe is displayed as \"A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=restaurant with a fixed text, namely 'A restaurant where one can get a proper meal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "restaurant" + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant where one can get a proper meal\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=biergarten with a fixed text, namely 'An open space where beer is served, typically seen in Germany' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "biergarten" + "value": "biergarten", + "description": "amenity=biergarten is displayed as \"An open space where beer is served, typically seen in Germany\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=nightclub with a fixed text, namely 'This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "nightclub" + "value": "nightclub", + "description": "amenity=nightclub is displayed as \"This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "opening_hours", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#opening_hours", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "opening_hours", - "description": "Layer 'Cafés and pubs' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#opening_hours", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "website", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Cafés and pubs' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Cafés and pubs' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Cafés and pubs' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Cafés and pubs, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Cafés and pubs' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cafés and pubs')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Cafés and pubs, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "payment:cash", - "description": "Layer 'Cafés and pubs' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Cafés and pubs' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Cafés and pubs' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "wheelchair", - "description": "Layer 'Cafés and pubs' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "wheelchair", - "description": "Layer 'Cafés and pubs' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "wheelchair", - "description": "Layer 'Cafés and pubs' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "wheelchair", - "description": "Layer 'Cafés and pubs' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "smoking", - "description": "Layer 'Cafés and pubs' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "yes" + "value": "yes", + "description": "smoking=yes is displayed as \"Smoking is allowed\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking", + "icon_url": "./assets/layers/questions/smoking.svg" }, { "key": "smoking", - "description": "Layer 'Cafés and pubs' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "no" + "value": "no", + "description": "smoking=no is displayed as \"Smoking is not allowed\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking", + "icon_url": "./assets/layers/questions/no_smoking.svg" }, { "key": "smoking", - "description": "Layer 'Cafés and pubs' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "outside", + "description": "smoking=outside is displayed as \"Smoking is allowed outside.\" by layers Cafés and pubs, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "service:electricity", - "description": "Layer 'Cafés and pubs' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "service:electricity", - "description": "Layer 'Cafés and pubs' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "limited" + "value": "limited", + "description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "service:electricity", - "description": "Layer 'Cafés and pubs' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "ask" + "value": "ask", + "description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "service:electricity", - "description": "Layer 'Cafés and pubs' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" + "value": "no", + "description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "outdoor_seating", - "description": "Layer 'Cafés and pubs' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#seating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "indoor_seating", - "description": "Layer 'Cafés and pubs' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#seating", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Cafés and pubs' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Cafés and pubs' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Cafés and pubs' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_ssid", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Cafés and pubs' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layers Cafés and pubs, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_ssid", + "icon_url": "./assets/layers/cafe_pub/pub.svg" }, { "key": "leisure", - "description": "The MapComplete theme Cafés and pubs has a layer Outdoor Seating showing features with this tag", - "value": "outdoor_seating" - }, - { - "key": "id", - "description": "Layer 'Outdoor Seating' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "outdoor_seating", + "description": "Features with this tag are displayed by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "access", - "description": "Layer 'Outdoor Seating' shows access=yes with a fixed text, namely 'Anyone can use this outdoor seating area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Anyone can use this outdoor seating area.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "access", - "description": "Layer 'Outdoor Seating' shows access=customers with a fixed text, namely 'Only customers can use this outdoor seating area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only customers can use this outdoor seating area.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "access", - "description": "Layer 'Outdoor Seating' shows access=private with a fixed text, namely 'This outdoor seating area is private.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"This outdoor seating area is private.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=no with a fixed text, namely 'This outdoor seating area is available all year round.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" + "value": "no", + "description": "seasonal=no is displayed as \"This outdoor seating area is available all year round.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=spring with a fixed text, namely 'This outdoor seating area is available in spring.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "spring" + "value": "spring", + "description": "seasonal=spring is displayed as \"This outdoor seating area is available in spring.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=summer with a fixed text, namely 'This outdoor seating area is available in summer.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "summer" + "value": "summer", + "description": "seasonal=summer is displayed as \"This outdoor seating area is available in summer.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=autumn with a fixed text, namely 'This outdoor seating area is available in autumn.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "autumn" + "value": "autumn", + "description": "seasonal=autumn is displayed as \"This outdoor seating area is available in autumn.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=winter with a fixed text, namely 'This outdoor seating area is available in winter.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "winter" + "value": "winter", + "description": "seasonal=winter is displayed as \"This outdoor seating area is available in winter.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=dry_season with a fixed text, namely 'This outdoor seating area is available in the dry season.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "dry_season" + "value": "dry_season", + "description": "seasonal=dry_season is displayed as \"This outdoor seating area is available in the dry season.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "opening_hours", - "description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "opening_hours", - "description": "Layer 'Outdoor Seating' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Outdoor Seating' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "contact:website", - "description": "Layer 'Outdoor Seating' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Outdoor Seating' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Outdoor Seating' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Outdoor Seating' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Outdoor Seating' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" - }, - { - "key": "wheelchair", - "description": "Layer 'Outdoor Seating' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Outdoor Seating' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Outdoor Seating' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Outdoor Seating' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "heating", - "description": "Layer 'Outdoor Seating' shows heating=yes with a fixed text, namely 'This outdoor seating area is heated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "heating=yes is displayed as \"This outdoor seating area is heated.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#heating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "heating", - "description": "Layer 'Outdoor Seating' shows heating=no with a fixed text, namely 'This outdoor seating area is not heated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" + "value": "no", + "description": "heating=no is displayed as \"This outdoor seating area is not heated.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#heating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "covered", - "description": "Layer 'Outdoor Seating' shows covered=yes with a fixed text, namely 'This outdoor seating area is covered.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" + "value": "yes", + "description": "covered=yes is displayed as \"This outdoor seating area is covered.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#covered", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "covered", - "description": "Layer 'Outdoor Seating' shows covered=no with a fixed text, namely 'This outdoor seating area is not covered.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Outdoor Seating' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "yes" - }, - { - "key": "smoking", - "description": "Layer 'Outdoor Seating' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Outdoor Seating' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "no", + "description": "covered=no is displayed as \"This outdoor seating area is not covered.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#covered", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cafés and pubs has a layer Food Courts showing features with this tag", - "value": "food_court" - }, - { - "key": "id", - "description": "Layer 'Food Courts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "food_court", + "description": "Features with this tag are displayed by layer Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_courts.md", + "icon_url": "./assets/layers/food_courts/food_court.svg" }, { "key": "name", - "description": "Layer 'Food Courts' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "image", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "opening_hours", - "description": "Layer 'Food Courts' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "opening_hours", - "description": "Layer 'Food Courts' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "closed" - }, - { - "key": "wheelchair", - "description": "Layer 'Food Courts' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Food Courts' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Food Courts' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Food Courts' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')", - "value": "no" - }, - { - "key": "website", - "description": "Layer 'Food Courts' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "contact:website", - "description": "Layer 'Food Courts' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "phone", - "description": "Layer 'Food Courts' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "contact:phone", - "description": "Layer 'Food Courts' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cafés and pubs')" - }, - { - "key": "smoking", - "description": "Layer 'Food Courts' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "yes" - }, - { - "key": "smoking", - "description": "Layer 'Food Courts' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Food Courts' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "description": "Values of `name` are shown with \"This food court is called {name}.\" and can be updated. The question is \"What is the name of this food court?\" by layer Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_courts.md#name", + "icon_url": "./assets/layers/food_courts/food_court.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_campersite.json b/Docs/TagInfo/mapcomplete_campersite.json index d81e849806..638806bbc8 100644 --- a/Docs/TagInfo/mapcomplete_campersite.json +++ b/Docs/TagInfo/mapcomplete_campersite.json @@ -7,257 +7,289 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/campersite/caravan.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "tourism", - "description": "The MapComplete theme Campersites has a layer Camper sites showing features with this tag", - "value": "caravan_site" + "value": "caravan_site", + "description": "Features with this tag are displayed by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "id", - "description": "Layer 'Camper sites' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Campersites') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "panoramax", - "description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "mapillary", - "description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "wikidata", - "description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "wikipedia", - "description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "name", - "description": "Layer 'Camper sites' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Campersites')" + "description": "Values of `name` are shown with \"This place is called {name}\" and can be updated. The question is \"What is this place called?\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_name", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "fee", - "description": "Layer 'Camper sites' shows fee=yes with a fixed text, namely 'You need to pay for use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"You need to pay for use\" by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_fee", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "fee", - "description": "Layer 'Camper sites' shows fee=no with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Can be used for free\" by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_fee", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "charge", - "description": "Layer 'Camper sites' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Campersites') (This is only shown if fee=yes)" + "description": "Values of `charge` are shown with \"This place charges {charge}\" and can be updated. The question is \"How much does this place charge?\" by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_charge", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "sanitary_dump_station", - "description": "Layer 'Camper sites' shows sanitary_dump_station=yes with a fixed text, namely 'This place has a sanitary dump station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "sanitary_dump_station=yes is displayed as \"This place has a sanitary dump station\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_sanitary_dump", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "sanitary_dump_station", - "description": "Layer 'Camper sites' shows sanitary_dump_station=no with a fixed text, namely 'This place does not have a sanitary dump station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "sanitary_dump_station=no is displayed as \"This place does not have a sanitary dump station\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_sanitary_dump", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "capacity", - "description": "Layer 'Camper sites' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Campersites')" + "description": "Values of `capacity` are shown with \"{capacity} campers can use this place at the same time\" and can be updated. The question is \"How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_capacity", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "internet_access", - "description": "Layer 'Camper sites' shows internet_access=yes with a fixed text, namely 'There is internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"There is internet access\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "internet_access", - "description": "Layer 'Camper sites' shows internet_access=wifi | internet_access=wlan with a fixed text, namely 'There is internet access' (in the mapcomplete.org theme 'Campersites')", - "value": "wifi" + "value": "wifi", + "description": "internet_access=wifi | internet_access=wlan is displayed as \"There is internet access\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "internet_access", - "description": "Layer 'Camper sites' shows internet_access=wifi | internet_access=wlan with a fixed text, namely 'There is internet access' (in the mapcomplete.org theme 'Campersites')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wifi | internet_access=wlan is displayed as \"There is internet access\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "internet_access", - "description": "Layer 'Camper sites' shows internet_access=no with a fixed text, namely 'There is no internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"There is no internet access\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Camper sites' shows internet_access:fee=yes with a fixed text, namely 'You need to pay extra for internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites') (This is only shown if internet_access=yes)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"You need to pay extra for internet access\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet_fee", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Camper sites' shows internet_access:fee=no with a fixed text, namely 'You do not need to pay extra for internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites') (This is only shown if internet_access=yes)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"You do not need to pay extra for internet access\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet_fee", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "toilets", - "description": "Layer 'Camper sites' shows toilets=yes with a fixed text, namely 'This place has toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "toilets=yes is displayed as \"This place has toilets\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_toilets", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "toilets", - "description": "Layer 'Camper sites' shows toilets=no with a fixed text, namely 'This place does not have toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "toilets=no is displayed as \"This place does not have toilets\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_toilets", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "website", - "description": "Layer 'Camper sites' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Campersites')" + "description": "Values of `website` are shown with \"Official website: {website}\" and can be updated. The question is \"Does this place have a website?\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_website", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "permanent_camping", - "description": "Layer 'Camper sites' shows permanent_camping=yes with a fixed text, namely 'There are some spots for long term rental, but you can also stay on a daily basis' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "permanent_camping=yes is displayed as \"There are some spots for long term rental, but you can also stay on a daily basis\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_long_term", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "permanent_camping", - "description": "Layer 'Camper sites' shows permanent_camping=no with a fixed text, namely 'There are no permanent guests here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "permanent_camping=no is displayed as \"There are no permanent guests here\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_long_term", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "permanent_camping", - "description": "Layer 'Camper sites' shows permanent_camping=only with a fixed text, namely 'It is only possible to stay here if you have a long term contract (this place disappears from this map if you choose this)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "only" + "value": "only", + "description": "permanent_camping=only is displayed as \"It is only possible to stay here if you have a long term contract (this place disappears from this map if you choose this)\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_long_term", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "description", - "description": "Layer 'Camper sites' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Campersites')" + "description": "Values of `description` are shown with \"More details about this place: {description}\" and can be updated. The question is \"Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)\" by layer Camper sites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_description", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "operator", - "description": "Layer 'Camper sites' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Campersites')" + "description": "Values of `operator` are shown with \"This place is operated by {operator}\" and can be updated. The question is \"Who operates this place?\" by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#operator", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "power_supply", - "description": "Layer 'Camper sites' shows power_supply=yes with a fixed text, namely 'This place has a power supply' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "power_supply=yes is displayed as \"This place has a power supply\" by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#power_supply", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "power_supply", - "description": "Layer 'Camper sites' shows power_supply=no with a fixed text, namely 'This place does not have power supply' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "power_supply=no is displayed as \"This place does not have power supply\" by layers Camper sites, Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#power_supply", + "icon_url": "./assets/themes/campersite/caravan.svg" }, { "key": "amenity", - "description": "The MapComplete theme Campersites has a layer Sanitary dump stations showing features with this tag", - "value": "sanitary_dump_station" - }, - { - "key": "id", - "description": "Layer 'Sanitary dump stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Campersites') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "fee", - "description": "Layer 'Sanitary dump stations' shows fee=yes with a fixed text, namely 'You need to pay for use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" - }, - { - "key": "fee", - "description": "Layer 'Sanitary dump stations' shows fee=no with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" - }, - { - "key": "charge", - "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Campersites') (This is only shown if fee=yes)" + "value": "sanitary_dump_station", + "description": "Features with this tag are displayed by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "water_point", - "description": "Layer 'Sanitary dump stations' shows water_point=yes with a fixed text, namely 'This place has a water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "water_point=yes is displayed as \"This place has a water point\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_waterpoint", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "water_point", - "description": "Layer 'Sanitary dump stations' shows water_point=no with a fixed text, namely 'This place does not have a water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "water_point=no is displayed as \"This place does not have a water point\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_waterpoint", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "sanitary_dump_station:grey_water", - "description": "Layer 'Sanitary dump stations' shows sanitary_dump_station:grey_water=yes with a fixed text, namely 'You can dispose of grey water here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "sanitary_dump_station:grey_water=yes is displayed as \"You can dispose of grey water here\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_grey_water", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "sanitary_dump_station:grey_water", - "description": "Layer 'Sanitary dump stations' shows sanitary_dump_station:grey_water=no with a fixed text, namely 'You cannot dispose of gray water here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "sanitary_dump_station:grey_water=no is displayed as \"You cannot dispose of gray water here\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_grey_water", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "sanitary_dump_station:chemical_toilet", - "description": "Layer 'Sanitary dump stations' shows sanitary_dump_station:chemical_toilet=yes with a fixed text, namely 'You can dispose of chemical toilet waste here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "sanitary_dump_station:chemical_toilet=yes is displayed as \"You can dispose of chemical toilet waste here\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_chemical_waste", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "sanitary_dump_station:chemical_toilet", - "description": "Layer 'Sanitary dump stations' shows sanitary_dump_station:chemical_toilet=no with a fixed text, namely 'You cannot dispose of chemical toilet waste here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "value": "no", + "description": "sanitary_dump_station:chemical_toilet=no is displayed as \"You cannot dispose of chemical toilet waste here\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_chemical_waste", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "access", - "description": "Layer 'Sanitary dump stations' shows access=network with a fixed text, namely 'You need a network key/code to use this' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "network" + "value": "network", + "description": "access=network is displayed as \"You need a network key/code to use this\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_access", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "access", - "description": "Layer 'Sanitary dump stations' shows access=customers with a fixed text, namely 'You need to be a customer of camping/campersite to use this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"You need to be a customer of camping/campersite to use this place\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_access", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "access", - "description": "Layer 'Sanitary dump stations' shows access=public with a fixed text, namely 'Anyone can use this dump station' (in the mapcomplete.org theme 'Campersites')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Anyone can use this dump station\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_access", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "access", - "description": "Layer 'Sanitary dump stations' shows access=yes with a fixed text, namely 'Anyone can use this dump station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Anyone can use this dump station\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_access", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" }, { "key": "network", - "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'network' (in the mapcomplete.org theme 'Campersites')" - }, - { - "key": "operator", - "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Campersites')" - }, - { - "key": "power_supply", - "description": "Layer 'Sanitary dump stations' shows power_supply=yes with a fixed text, namely 'This place has a power supply' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "yes" - }, - { - "key": "power_supply", - "description": "Layer 'Sanitary dump stations' shows power_supply=no with a fixed text, namely 'This place does not have power supply' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')", - "value": "no" + "description": "Values of `network` are shown with \"This station is part of network {network}\" and can be updated. The question is \"What network is this place a part of? (skip if none)\" by layer Sanitary dump stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_network", + "icon_url": "./assets/themes/campersite/sanitary_dump_station.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_charging_stations.json b/Docs/TagInfo/mapcomplete_charging_stations.json index 3c6f787d41..f86da8a94f 100644 --- a/Docs/TagInfo/mapcomplete_charging_stations.json +++ b/Docs/TagInfo/mapcomplete_charging_stations.json @@ -7,2504 +7,2123 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/charging_stations/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Charging stations has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "The MapComplete theme Charging stations has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "The MapComplete theme Charging stations has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "The MapComplete theme Charging stations has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "id", - "description": "Layer 'Charging stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Charging stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#images", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "panoramax", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#images", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "mapillary", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#images", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "wikidata", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#images", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "wikipedia", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#images", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "bicycle", - "description": "Layer 'Charging stations' shows bicycle=yes with a fixed text, namely 'Bicycles can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"Bicycles can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "motorcar", - "description": "Layer 'Charging stations' shows motorcar=yes with a fixed text, namely 'Cars can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "motorcar=yes is displayed as \"Cars can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "scooter", - "description": "Layer 'Charging stations' shows scooter=yes with a fixed text, namely 'Scooters can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "scooter=yes is displayed as \"Scooters can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "hgv", - "description": "Layer 'Charging stations' shows hgv=yes with a fixed text, namely 'Heavy good vehicles (such as trucks) can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "hgv=yes is displayed as \"Heavy good vehicles (such as trucks) can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "bus", - "description": "Layer 'Charging stations' shows bus=yes with a fixed text, namely 'Buses can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "bus=yes is displayed as \"Buses can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Charging stations')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Who is allowed to use this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=yes with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Anyone can use this charging station (payment might be needed)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the mapcomplete.org theme 'Charging stations')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Anyone can use this charging station (payment might be needed)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=customers with a fixed text, namely 'Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=key with a fixed text, namely 'A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, ...)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Not accessible to the general public (e.g. only accessible to the owners, employees, ...)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=permissive with a fixed text, namely 'This charging station is accessible to the public during certain hours or conditions. Restrictions might apply, but general use is allowed.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "permissive" + "value": "permissive", + "description": "access=permissive is displayed as \"This charging station is accessible to the public during certain hours or conditions. Restrictions might apply, but general use is allowed.\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "capacity", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Charging stations')" + "description": "Values of `capacity` are shown with \"{capacity} vehicles can be charged here at the same time\" and can be updated. The question is \"How much vehicles can be charged here at the same time?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#capacity", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows socket:schuko=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:schuko=1 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows socket:schuko~.+ & socket:schuko!=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:schuko~.+ & socket:schuko!=1 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows socket:typee=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:typee=1 is displayed as \"European wall plug with ground pin (CEE7/4 type E)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows socket:typee~.+ & socket:typee!=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:typee~.+ & socket:typee!=1 is displayed as \"European wall plug with ground pin (CEE7/4 type E)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows socket:chademo=1 with a fixed text, namely 'Chademo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:chademo=1 is displayed as \"Chademo\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows socket:chademo~.+ & socket:chademo!=1 with a fixed text, namely 'Chademo' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:chademo~.+ & socket:chademo!=1 is displayed as \"Chademo\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows socket:type1_cable=1 with a fixed text, namely 'Type 1 with cable (J1772)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:type1_cable=1 is displayed as \"Type 1 with cable (J1772)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows socket:type1_cable~.+ & socket:type1_cable!=1 with a fixed text, namely 'Type 1 with cable (J1772)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:type1_cable~.+ & socket:type1_cable!=1 is displayed as \"Type 1 with cable (J1772)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows socket:type1=1 with a fixed text, namely 'Type 1 without cable (J1772)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:type1=1 is displayed as \"Type 1 without cable (J1772)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows socket:type1~.+ & socket:type1!=1 with a fixed text, namely 'Type 1 without cable (J1772)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:type1~.+ & socket:type1!=1 is displayed as \"Type 1 without cable (J1772)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows socket:type1_combo=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:type1_combo=1 is displayed as \"Type 1 CCS (aka Type 1 Combo)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows socket:type1_combo~.+ & socket:type1_combo!=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:type1_combo~.+ & socket:type1_combo!=1 is displayed as \"Type 1 CCS (aka Type 1 Combo)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger=1 with a fixed text, namely 'Tesla Supercharger' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:tesla_supercharger=1 is displayed as \"Tesla Supercharger\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger~.+ & socket:tesla_supercharger!=1 with a fixed text, namely 'Tesla Supercharger' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:tesla_supercharger~.+ & socket:tesla_supercharger!=1 is displayed as \"Tesla Supercharger\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows socket:type2=1 with a fixed text, namely 'Type 2 (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:type2=1 is displayed as \"Type 2 (mennekes)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows socket:type2~.+ & socket:type2!=1 with a fixed text, namely 'Type 2 (mennekes)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:type2~.+ & socket:type2!=1 is displayed as \"Type 2 (mennekes)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows socket:type2_combo=1 with a fixed text, namely 'Type 2 CCS (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:type2_combo=1 is displayed as \"Type 2 CCS (mennekes)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows socket:type2_combo~.+ & socket:type2_combo!=1 with a fixed text, namely 'Type 2 CCS (mennekes)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:type2_combo~.+ & socket:type2_combo!=1 is displayed as \"Type 2 CCS (mennekes)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows socket:type2_cable=1 with a fixed text, namely 'Type 2 with cable (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:type2_cable=1 is displayed as \"Type 2 with cable (mennekes)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows socket:type2_cable~.+ & socket:type2_cable!=1 with a fixed text, namely 'Type 2 with cable (mennekes)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:type2_cable~.+ & socket:type2_cable!=1 is displayed as \"Type 2 with cable (mennekes)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:tesla_supercharger_ccs=1 is displayed as \"Tesla Supercharger CCS (a branded type2_css)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=1 is displayed as \"Tesla Supercharger CCS (a branded type2_css)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla Supercharger (destination)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:tesla_destination=1 is displayed as \"Tesla Supercharger (destination)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country=us is displayed as \"Tesla Supercharger (destination)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:tesla_destination=1 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country!=us with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country!=us is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows socket:USB-A=1 with a fixed text, namely 'USB to charge phones and small electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:USB-A=1 is displayed as \"USB to charge phones and small electronics\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows socket:USB-A~.+ & socket:USB-A!=1 with a fixed text, namely 'USB to charge phones and small electronics' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:USB-A~.+ & socket:USB-A!=1 is displayed as \"USB to charge phones and small electronics\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows socket:bosch_3pin=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:bosch_3pin=1 is displayed as \"Bosch Active Connect with 3 pins and cable\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows socket:bosch_3pin~.+ & socket:bosch_3pin!=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:bosch_3pin~.+ & socket:bosch_3pin!=1 is displayed as \"Bosch Active Connect with 3 pins and cable\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows socket:bosch_5pin=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:bosch_5pin=1 is displayed as \"Bosch Active Connect with 5 pins and cable\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows socket:bosch_5pin~.+ & socket:bosch_5pin!=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:bosch_5pin~.+ & socket:bosch_5pin!=1 is displayed as \"Bosch Active Connect with 5 pins and cable\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows socket:bs1363=1 with a fixed text, namely 'BS1363 (Type G)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:bs1363=1 is displayed as \"BS1363 (Type G)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows socket:bs1363~.+ & socket:bs1363!=1 with a fixed text, namely 'BS1363 (Type G)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:bs1363~.+ & socket:bs1363!=1 is displayed as \"BS1363 (Type G)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows socket:nema5_15=1 with a fixed text, namely 'NEMA 5-15 (Type B)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:nema5_15=1 is displayed as \"NEMA 5-15 (Type B)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows socket:nema5_15~.+ & socket:nema5_15!=1 with a fixed text, namely 'NEMA 5-15 (Type B)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:nema5_15~.+ & socket:nema5_15!=1 is displayed as \"NEMA 5-15 (Type B)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows socket:sev1011_t23=1 with a fixed text, namely 'SEV 1011 T23 (Type J)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:sev1011_t23=1 is displayed as \"SEV 1011 T23 (Type J)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows socket:sev1011_t23~.+ & socket:sev1011_t23!=1 with a fixed text, namely 'SEV 1011 T23 (Type J)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:sev1011_t23~.+ & socket:sev1011_t23!=1 is displayed as \"SEV 1011 T23 (Type J)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows socket:as3112=1 with a fixed text, namely 'AS3112 (Type I)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:as3112=1 is displayed as \"AS3112 (Type I)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows socket:as3112~.+ & socket:as3112!=1 with a fixed text, namely 'AS3112 (Type I)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:as3112~.+ & socket:as3112!=1 is displayed as \"AS3112 (Type I)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows socket:nema_5_20=1 with a fixed text, namely 'NEMA 5-20 (Type B)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" + "value": "1", + "description": "socket:nema_5_20=1 is displayed as \"NEMA 5-20 (Type B)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows socket:nema_5_20~.+ & socket:nema_5_20!=1 with a fixed text, namely 'NEMA 5-20 (Type B)' (in the mapcomplete.org theme 'Charging stations')" + "description": "socket:nema_5_20~.+ & socket:nema_5_20!=1 is displayed as \"NEMA 5-20 (Type B)\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko` are shown with \"There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here\" and can be updated. The question is \"How much plugs of type Schuko wall plug without ground pin (CEE7/4 type F) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_schuko", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:schuko:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:voltage` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:voltage", - "description": "Layer 'Charging stations' shows socket:schuko:voltage=230 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "230" + "value": "230", + "description": "socket:schuko:voltage=230 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:current` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}\" and can be updated. The question is \"What current do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:current", - "description": "Layer 'Charging stations' shows socket:schuko:current=16 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "16" + "value": "16", + "description": "socket:schuko:current=16 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:output` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}\" and can be updated. The question is \"What power output does a single plug of type Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:output", - "description": "Layer 'Charging stations' shows socket:schuko:output=3.6 kW with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "3.6 kW" + "value": "3.6 kW", + "description": "socket:schuko:output=3.6 kW is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee` are shown with \"There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here\" and can be updated. The question is \"How much plugs of type European wall plug with ground pin (CEE7/4 type E) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_typee", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:typee:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:voltage` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}\" and can be updated. The question is \"What voltage do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:voltage", - "description": "Layer 'Charging stations' shows socket:typee:voltage=230 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "230" + "value": "230", + "description": "socket:typee:voltage=230 is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs 230 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:current` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}\" and can be updated. The question is \"What current do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:current", - "description": "Layer 'Charging stations' shows socket:typee:current=16 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "16" + "value": "16", + "description": "socket:typee:current=16 is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:output` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}\" and can be updated. The question is \"What power output does a single plug of type European wall plug with ground pin (CEE7/4 type E) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=3 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "3 kW" + "value": "3 kW", + "description": "socket:typee:output=3 kW is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=22 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:typee:output=22 kW is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo` are shown with \"There are {socket:chademo} plugs of type Chademo available here\" and can be updated. The question is \"How much plugs of type Chademo are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_chademo", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:chademo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:voltage` are shown with \"Chademo outputs {canonical(socket:chademo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Chademo offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:voltage", - "description": "Layer 'Charging stations' shows socket:chademo:voltage=500 with a fixed text, namely 'Chademo outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "500" + "value": "500", + "description": "socket:chademo:voltage=500 is displayed as \"Chademo outputs 500 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:current` are shown with \"Chademo outputs at most {canonical(socket:chademo:current)}\" and can be updated. The question is \"What current do the plugs with Chademo offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:current", - "description": "Layer 'Charging stations' shows socket:chademo:current=120 with a fixed text, namely 'Chademo outputs at most 120 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "120" + "value": "120", + "description": "socket:chademo:current=120 is displayed as \"Chademo outputs at most 120 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:output` are shown with \"Chademo outputs at most {canonical(socket:chademo:output)}\" and can be updated. The question is \"What power output does a single plug of type Chademo offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:output", - "description": "Layer 'Charging stations' shows socket:chademo:output=50 kW with a fixed text, namely 'Chademo outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:chademo:output=50 kW is displayed as \"Chademo outputs at most 50 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable` are shown with \"There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here\" and can be updated. The question is \"How much plugs of type Type 1 with cable (J1772) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type1_cable", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:voltage` are shown with \"Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 with cable (J1772) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=200 with a fixed text, namely 'Type 1 with cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "200" + "value": "200", + "description": "socket:type1_cable:voltage=200 is displayed as \"Type 1 with cable (J1772) outputs 200 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=240 with a fixed text, namely 'Type 1 with cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "240" + "value": "240", + "description": "socket:type1_cable:voltage=240 is displayed as \"Type 1 with cable (J1772) outputs 240 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:current` are shown with \"Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 with cable (J1772) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:current", - "description": "Layer 'Charging stations' shows socket:type1_cable:current=32 with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "32" + "value": "32", + "description": "socket:type1_cable:current=32 is displayed as \"Type 1 with cable (J1772) outputs at most 32 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:output` are shown with \"Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 with cable (J1772) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=3.7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:type1_cable:output=3.7 kW is displayed as \"Type 1 with cable (J1772) outputs at most 3.7 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "7 kW" + "value": "7 kW", + "description": "socket:type1_cable:output=7 kW is displayed as \"Type 1 with cable (J1772) outputs at most 7 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1` are shown with \"There are {socket:type1} plugs of type Type 1 without cable (J1772) available here\" and can be updated. The question is \"How much plugs of type Type 1 without cable (J1772) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type1", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:voltage` are shown with \"Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 without cable (J1772) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows socket:type1:voltage=200 with a fixed text, namely 'Type 1 without cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "200" + "value": "200", + "description": "socket:type1:voltage=200 is displayed as \"Type 1 without cable (J1772) outputs 200 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows socket:type1:voltage=240 with a fixed text, namely 'Type 1 without cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "240" + "value": "240", + "description": "socket:type1:voltage=240 is displayed as \"Type 1 without cable (J1772) outputs 240 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:current` are shown with \"Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 without cable (J1772) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:current", - "description": "Layer 'Charging stations' shows socket:type1:current=32 with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "32" + "value": "32", + "description": "socket:type1:current=32 is displayed as \"Type 1 without cable (J1772) outputs at most 32 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:output` are shown with \"Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 without cable (J1772) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=3.7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:type1:output=3.7 kW is displayed as \"Type 1 without cable (J1772) outputs at most 3.7 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=6.6 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "6.6 kW" + "value": "6.6 kW", + "description": "socket:type1:output=6.6 kW is displayed as \"Type 1 without cable (J1772) outputs at most 6.6 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "7 kW" + "value": "7 kW", + "description": "socket:type1:output=7 kW is displayed as \"Type 1 without cable (J1772) outputs at most 7 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7.2 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "7.2 kW" + "value": "7.2 kW", + "description": "socket:type1:output=7.2 kW is displayed as \"Type 1 without cable (J1772) outputs at most 7.2 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo` are shown with \"There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here\" and can be updated. The question is \"How much plugs of type Type 1 CCS (aka Type 1 Combo) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type1_combo", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:voltage` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 CCS (aka Type 1 Combo) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=400 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "400" + "value": "400", + "description": "socket:type1_combo:voltage=400 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs 400 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=1000 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 1000 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "1000" + "value": "1000", + "description": "socket:type1_combo:voltage=1000 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs 1000 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:current` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 CCS (aka Type 1 Combo) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows socket:type1_combo:current=50 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "50" + "value": "50", + "description": "socket:type1_combo:current=50 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 50 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows socket:type1_combo:current=125 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "125" + "value": "125", + "description": "socket:type1_combo:current=125 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 125 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:output` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 CCS (aka Type 1 Combo) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=50 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:type1_combo:output=50 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=62.5 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "62.5 kW" + "value": "62.5 kW", + "description": "socket:type1_combo:output=62.5 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=150 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:type1_combo:output=150 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 150 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=350 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "350 kW" + "value": "350 kW", + "description": "socket:type1_combo:output=350 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 350 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger` are shown with \"There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_tesla_supercharger", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_supercharger:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:voltage` are shown with \"Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:voltage=480 with a fixed text, namely 'Tesla Supercharger outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "480" + "value": "480", + "description": "socket:tesla_supercharger:voltage=480 is displayed as \"Tesla Supercharger outputs 480 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:current` are shown with \"Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=125 with a fixed text, namely 'Tesla Supercharger outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_supercharger:current=125 is displayed as \"Tesla Supercharger outputs at most 125 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=350 with a fixed text, namely 'Tesla Supercharger outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_supercharger:current=350 is displayed as \"Tesla Supercharger outputs at most 350 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:output` are shown with \"Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=120 kW with a fixed text, namely 'Tesla Supercharger outputs at most 120 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "120 kW" + "value": "120 kW", + "description": "socket:tesla_supercharger:output=120 kW is displayed as \"Tesla Supercharger outputs at most 120 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=150 kW with a fixed text, namely 'Tesla Supercharger outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:tesla_supercharger:output=150 kW is displayed as \"Tesla Supercharger outputs at most 150 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=250 kW with a fixed text, namely 'Tesla Supercharger outputs at most 250 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "250 kW" + "value": "250 kW", + "description": "socket:tesla_supercharger:output=250 kW is displayed as \"Tesla Supercharger outputs at most 250 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2` are shown with \"There are {socket:type2} plugs of type Type 2 (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 (mennekes) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type2", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:voltage` are shown with \"Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows socket:type2:voltage=230 with a fixed text, namely 'Type 2 (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "230" + "value": "230", + "description": "socket:type2:voltage=230 is displayed as \"Type 2 (mennekes) outputs 230 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows socket:type2:voltage=400 with a fixed text, namely 'Type 2 (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "400" + "value": "400", + "description": "socket:type2:voltage=400 is displayed as \"Type 2 (mennekes) outputs 400 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:current` are shown with \"Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows socket:type2:current=16 with a fixed text, namely 'Type 2 (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "16" + "value": "16", + "description": "socket:type2:current=16 is displayed as \"Type 2 (mennekes) outputs at most 16 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows socket:type2:current=32 with a fixed text, namely 'Type 2 (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "32" + "value": "32", + "description": "socket:type2:current=32 is displayed as \"Type 2 (mennekes) outputs at most 32 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:output` are shown with \"Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=11 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:type2:output=11 kW is displayed as \"Type 2 (mennekes) outputs at most 11 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=22 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:type2:output=22 kW is displayed as \"Type 2 (mennekes) outputs at most 22 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo` are shown with \"There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 CCS (mennekes) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type2_combo", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:voltage` are shown with \"Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 CCS (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=500 with a fixed text, namely 'Type 2 CCS (mennekes) outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "500" + "value": "500", + "description": "socket:type2_combo:voltage=500 is displayed as \"Type 2 CCS (mennekes) outputs 500 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=920 with a fixed text, namely 'Type 2 CCS (mennekes) outputs 920 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "920" + "value": "920", + "description": "socket:type2_combo:voltage=920 is displayed as \"Type 2 CCS (mennekes) outputs 920 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:current` are shown with \"Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 CCS (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows socket:type2_combo:current=125 with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "125" + "value": "125", + "description": "socket:type2_combo:current=125 is displayed as \"Type 2 CCS (mennekes) outputs at most 125 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows socket:type2_combo:current=350 with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "350" + "value": "350", + "description": "socket:type2_combo:current=350 is displayed as \"Type 2 CCS (mennekes) outputs at most 350 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:output` are shown with \"Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 CCS (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:output", - "description": "Layer 'Charging stations' shows socket:type2_combo:output=50 kW with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:type2_combo:output=50 kW is displayed as \"Type 2 CCS (mennekes) outputs at most 50 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable` are shown with \"There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 with cable (mennekes) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type2_cable", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:voltage` are shown with \"Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 with cable (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=230 with a fixed text, namely 'Type 2 with cable (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "230" + "value": "230", + "description": "socket:type2_cable:voltage=230 is displayed as \"Type 2 with cable (mennekes) outputs 230 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=400 with a fixed text, namely 'Type 2 with cable (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "400" + "value": "400", + "description": "socket:type2_cable:voltage=400 is displayed as \"Type 2 with cable (mennekes) outputs 400 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:current` are shown with \"Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 with cable (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows socket:type2_cable:current=16 with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "16" + "value": "16", + "description": "socket:type2_cable:current=16 is displayed as \"Type 2 with cable (mennekes) outputs at most 16 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows socket:type2_cable:current=32 with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "32" + "value": "32", + "description": "socket:type2_cable:current=32 is displayed as \"Type 2 with cable (mennekes) outputs at most 32 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:output` are shown with \"Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 with cable (mennekes) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=11 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:type2_cable:output=11 kW is displayed as \"Type 2 with cable (mennekes) outputs at most 11 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=22 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:type2_cable:output=22 kW is displayed as \"Type 2 with cable (mennekes) outputs at most 22 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs` are shown with \"There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger CCS (a branded type2_css) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_tesla_supercharger_ccs", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:voltage` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "500" + "value": "500", + "description": "socket:tesla_supercharger_ccs:voltage=500 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs 500 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 920 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "920" + "value": "920", + "description": "socket:tesla_supercharger_ccs:voltage=920 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs 920 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:current` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=125 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_supercharger_ccs:current=125 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=350 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_supercharger_ccs:current=350 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:output` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger CCS (a branded type2_css) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kW with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:tesla_supercharger_ccs:output=50 kW is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination` are shown with \"There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger (destination) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_tesla_destination_us", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:voltage` are shown with \"Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger (destination) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 with a fixed text, namely 'Tesla Supercharger (destination) outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "480" + "value": "480", + "description": "socket:tesla_destination:voltage=480 is displayed as \"Tesla Supercharger (destination) outputs 480 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:current` are shown with \"Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger (destination) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_destination:current=125 is displayed as \"Tesla Supercharger (destination) outputs at most 125 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_destination:current=350 is displayed as \"Tesla Supercharger (destination) outputs at most 350 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:output` are shown with \"Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger (destination) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=120 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 120 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "120 kW" + "value": "120 kW", + "description": "socket:tesla_destination:output=120 kW is displayed as \"Tesla Supercharger (destination) outputs at most 120 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=150 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:tesla_destination:output=150 kW is displayed as \"Tesla Supercharger (destination) outputs at most 150 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=250 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 250 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "250 kW" + "value": "250 kW", + "description": "socket:tesla_destination:output=250 kW is displayed as \"Tesla Supercharger (destination) outputs at most 250 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination` are shown with \"There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here\" and can be updated. The question is \"How much plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_tesla_destination", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:voltage` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "230" + "value": "230", + "description": "socket:tesla_destination:voltage=230 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "400" + "value": "400", + "description": "socket:tesla_destination:voltage=400 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:current` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}\" and can be updated. The question is \"What current do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "16" + "value": "16", + "description": "socket:tesla_destination:current=16 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "32" + "value": "32", + "description": "socket:tesla_destination:current=32 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:output` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=11 kW with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:tesla_destination:output=11 kW is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=22 kW with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:tesla_destination:output=22 kW is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A` are shown with \"There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here\" and can be updated. The question is \"How much plugs of type USB to charge phones and small electronics are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_USB_A", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:USB-A:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:voltage` are shown with \"USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}\" and can be updated. The question is \"What voltage do the plugs with USB to charge phones and small electronics offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:voltage", - "description": "Layer 'Charging stations' shows socket:USB-A:voltage=5 with a fixed text, namely 'USB to charge phones and small electronics outputs 5 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "5" + "value": "5", + "description": "socket:USB-A:voltage=5 is displayed as \"USB to charge phones and small electronics outputs 5 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:current` are shown with \"USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}\" and can be updated. The question is \"What current do the plugs with USB to charge phones and small electronics offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows socket:USB-A:current=1 with a fixed text, namely 'USB to charge phones and small electronics outputs at most 1 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "1" + "value": "1", + "description": "socket:USB-A:current=1 is displayed as \"USB to charge phones and small electronics outputs at most 1 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows socket:USB-A:current=2 with a fixed text, namely 'USB to charge phones and small electronics outputs at most 2 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "2" + "value": "2", + "description": "socket:USB-A:current=2 is displayed as \"USB to charge phones and small electronics outputs at most 2 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:output` are shown with \"USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}\" and can be updated. The question is \"What power output does a single plug of type USB to charge phones and small electronics offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=5W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5W' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "5W" + "value": "5W", + "description": "socket:USB-A:output=5W is displayed as \"USB to charge phones and small electronics outputs at most 5W\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=10W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10W' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "10W" + "value": "10W", + "description": "socket:USB-A:output=10W is displayed as \"USB to charge phones and small electronics outputs at most 10W\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin` are shown with \"There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here\" and can be updated. The question is \"How much plugs of type Bosch Active Connect with 3 pins and cable are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_bosch_3pin", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_3pin:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:voltage` are shown with \"Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Bosch Active Connect with 3 pins and cable offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:current` are shown with \"Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}\" and can be updated. The question is \"What current do the plugs with Bosch Active Connect with 3 pins and cable offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:output` are shown with \"Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}\" and can be updated. The question is \"What power output does a single plug of type Bosch Active Connect with 3 pins and cable offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin` are shown with \"There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here\" and can be updated. The question is \"How much plugs of type Bosch Active Connect with 5 pins and cable are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_bosch_5pin", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bosch_5pin:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:voltage` are shown with \"Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Bosch Active Connect with 5 pins and cable offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:current` are shown with \"Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}\" and can be updated. The question is \"What current do the plugs with Bosch Active Connect with 5 pins and cable offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:output` are shown with \"Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}\" and can be updated. The question is \"What power output does a single plug of type Bosch Active Connect with 5 pins and cable offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363` are shown with \"There are {socket:bs1363} plugs of type BS1363 (Type G) available here\" and can be updated. The question is \"How much plugs of type BS1363 (Type G) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_bs1363", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:bs1363:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:voltage` are shown with \"BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}\" and can be updated. The question is \"What voltage do the plugs with BS1363 (Type G) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:voltage", - "description": "Layer 'Charging stations' shows socket:bs1363:voltage=230 with a fixed text, namely 'BS1363 (Type G) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "230" + "value": "230", + "description": "socket:bs1363:voltage=230 is displayed as \"BS1363 (Type G) outputs 230 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:current` are shown with \"BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}\" and can be updated. The question is \"What current do the plugs with BS1363 (Type G) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:current", - "description": "Layer 'Charging stations' shows socket:bs1363:current=13 with a fixed text, namely 'BS1363 (Type G) outputs at most 13 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "13" + "value": "13", + "description": "socket:bs1363:current=13 is displayed as \"BS1363 (Type G) outputs at most 13 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:output` are shown with \"BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}\" and can be updated. The question is \"What power output does a single plug of type BS1363 (Type G) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:output", - "description": "Layer 'Charging stations' shows socket:bs1363:output=3kW with a fixed text, namely 'BS1363 (Type G) outputs at most 3kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "3kW" + "value": "3kW", + "description": "socket:bs1363:output=3kW is displayed as \"BS1363 (Type G) outputs at most 3kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15` are shown with \"There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here\" and can be updated. The question is \"How much plugs of type NEMA 5-15 (Type B) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_nema5_15", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:nema5_15:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:voltage` are shown with \"NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}\" and can be updated. The question is \"What voltage do the plugs with NEMA 5-15 (Type B) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:voltage", - "description": "Layer 'Charging stations' shows socket:nema5_15:voltage=120 with a fixed text, namely 'NEMA 5-15 (Type B) outputs 120 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "120" + "value": "120", + "description": "socket:nema5_15:voltage=120 is displayed as \"NEMA 5-15 (Type B) outputs 120 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:current` are shown with \"NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}\" and can be updated. The question is \"What current do the plugs with NEMA 5-15 (Type B) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:current", - "description": "Layer 'Charging stations' shows socket:nema5_15:current=15 with a fixed text, namely 'NEMA 5-15 (Type B) outputs at most 15 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "15" + "value": "15", + "description": "socket:nema5_15:current=15 is displayed as \"NEMA 5-15 (Type B) outputs at most 15 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:output` are shown with \"NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}\" and can be updated. The question is \"What power output does a single plug of type NEMA 5-15 (Type B) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:output", - "description": "Layer 'Charging stations' shows socket:nema5_15:output=1.8 kW with a fixed text, namely 'NEMA 5-15 (Type B) outputs at most 1.8 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "1.8 kW" + "value": "1.8 kW", + "description": "socket:nema5_15:output=1.8 kW is displayed as \"NEMA 5-15 (Type B) outputs at most 1.8 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23` are shown with \"There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here\" and can be updated. The question is \"How much plugs of type SEV 1011 T23 (Type J) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_sev1011_t23", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:sev1011_t23:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:voltage` are shown with \"SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}\" and can be updated. The question is \"What voltage do the plugs with SEV 1011 T23 (Type J) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:voltage", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:voltage=230 with a fixed text, namely 'SEV 1011 T23 (Type J) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "230" + "value": "230", + "description": "socket:sev1011_t23:voltage=230 is displayed as \"SEV 1011 T23 (Type J) outputs 230 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:current` are shown with \"SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}\" and can be updated. The question is \"What current do the plugs with SEV 1011 T23 (Type J) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:current", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:current=16 with a fixed text, namely 'SEV 1011 T23 (Type J) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "16" + "value": "16", + "description": "socket:sev1011_t23:current=16 is displayed as \"SEV 1011 T23 (Type J) outputs at most 16 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:output` are shown with \"SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}\" and can be updated. The question is \"What power output does a single plug of type SEV 1011 T23 (Type J) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:output", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:output=3.7 kW with a fixed text, namely 'SEV 1011 T23 (Type J) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:sev1011_t23:output=3.7 kW is displayed as \"SEV 1011 T23 (Type J) outputs at most 3.7 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112` are shown with \"There are {socket:as3112} plugs of type AS3112 (Type I) available here\" and can be updated. The question is \"How much plugs of type AS3112 (Type I) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_as3112", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:as3112:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:voltage` are shown with \"AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}\" and can be updated. The question is \"What voltage do the plugs with AS3112 (Type I) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:voltage", - "description": "Layer 'Charging stations' shows socket:as3112:voltage=230 with a fixed text, namely 'AS3112 (Type I) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "230" + "value": "230", + "description": "socket:as3112:voltage=230 is displayed as \"AS3112 (Type I) outputs 230 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:current` are shown with \"AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}\" and can be updated. The question is \"What current do the plugs with AS3112 (Type I) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:current", - "description": "Layer 'Charging stations' shows socket:as3112:current=10 with a fixed text, namely 'AS3112 (Type I) outputs at most 10 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "10" + "value": "10", + "description": "socket:as3112:current=10 is displayed as \"AS3112 (Type I) outputs at most 10 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:output` are shown with \"AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}\" and can be updated. The question is \"What power output does a single plug of type AS3112 (Type I) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:output", - "description": "Layer 'Charging stations' shows socket:as3112:output=2.3 kW with a fixed text, namely 'AS3112 (Type I) outputs at most 2.3 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "2.3 kW" + "value": "2.3 kW", + "description": "socket:as3112:output=2.3 kW is displayed as \"AS3112 (Type I) outputs at most 2.3 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20` are shown with \"There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here\" and can be updated. The question is \"How much plugs of type NEMA 5-20 (Type B) are available here?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_nema_5_20", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:nema_5_20:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:voltage` are shown with \"NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}\" and can be updated. The question is \"What voltage do the plugs with NEMA 5-20 (Type B) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:voltage", - "description": "Layer 'Charging stations' shows socket:nema_5_20:voltage=120 with a fixed text, namely 'NEMA 5-20 (Type B) outputs 120 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "120" + "value": "120", + "description": "socket:nema_5_20:voltage=120 is displayed as \"NEMA 5-20 (Type B) outputs 120 volt\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:current` are shown with \"NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}\" and can be updated. The question is \"What current do the plugs with NEMA 5-20 (Type B) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:current", - "description": "Layer 'Charging stations' shows socket:nema_5_20:current=20 with a fixed text, namely 'NEMA 5-20 (Type B) outputs at most 20 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "20" + "value": "20", + "description": "socket:nema_5_20:current=20 is displayed as \"NEMA 5-20 (Type B) outputs at most 20 A\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:output` are shown with \"NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}\" and can be updated. The question is \"What power output does a single plug of type NEMA 5-20 (Type B) offer?\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:output", - "description": "Layer 'Charging stations' shows socket:nema_5_20:output=2.4 kW with a fixed text, namely 'NEMA 5-20 (Type B) outputs at most 2.4 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "2.4 kW" + "value": "2.4 kW", + "description": "socket:nema_5_20:output=2.4 kW is displayed as \"NEMA 5-20 (Type B) outputs at most 2.4 kW\" by layers Charging stations, Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "opening_hours", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Charging stations')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this charging station opened?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#OH", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "opening_hours", - "description": "Layer 'Charging stations' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#OH", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Charging stations' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Charging stations')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#OH", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Charging stations')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "fee=yes & fee:conditional=no @ customers is displayed as \"Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "no @ customers" + "value": "no @ customers", + "description": "fee=yes & fee:conditional=no @ customers is displayed as \"Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional= with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "fee=yes & fee:conditional= is displayed as \"Paid use\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional= with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=yes & fee:conditional= is displayed as \"Paid use\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=yes)" + "description": "Values of `charge` are shown with \"Using this charging station costs {charge}\" and can be updated. The question is \"How much does one have to pay to use this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#charge", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "payment:cash", - "description": "Layer 'Charging stations' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Charging stations' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Charging stations' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:app", - "description": "Layer 'Charging stations' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:app=yes is displayed as \"Payment is done using a dedicated app\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/smartphone.svg" }, { "key": "payment:membership_card", - "description": "Layer 'Charging stations' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:membership_card=yes is displayed as \"Payment is done using a membership card\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/nfc_card.svg" }, { "key": "payment:app", - "description": "Layer 'Charging stations' shows payment:app~.+ & payment:app!=no & payment:app!=yes with a fixed text, namely 'Payment is done using a dedicated app' (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=yes | charge~.+)" + "description": "payment:app~.+ & payment:app!=no & payment:app!=yes is displayed as \"Payment is done using a dedicated app\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/smartphone.svg" }, { "key": "payment:app", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'payment:app' (in the mapcomplete.org theme 'Charging stations') (This is only shown if payment:app~.+ & payment:app!=no)" + "description": "Values of `payment:app` are shown with \"Payment can be done using the app {payment:app}\" and can be updated. The question is \"What is the name of the app used for payment?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#app_name", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:membership_card", - "description": "Layer 'Charging stations' shows authentication:membership_card=yes with a fixed text, namely 'Authentication by a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:membership_card=yes is displayed as \"Authentication by a membership card\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:app", - "description": "Layer 'Charging stations' shows authentication:app=yes with a fixed text, namely 'Authentication by an app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:app=yes is displayed as \"Authentication by an app\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:phone_call", - "description": "Layer 'Charging stations' shows authentication:phone_call=yes with a fixed text, namely 'Authentication via phone call is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:phone_call=yes is displayed as \"Authentication via phone call is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:short_message", - "description": "Layer 'Charging stations' shows authentication:short_message=yes with a fixed text, namely 'Authentication via SMS is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:short_message=yes is displayed as \"Authentication via SMS is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:nfc", - "description": "Layer 'Charging stations' shows authentication:nfc=yes with a fixed text, namely 'Authentication via NFC is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:nfc=yes is displayed as \"Authentication via NFC is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:money_card", - "description": "Layer 'Charging stations' shows authentication:money_card=yes with a fixed text, namely 'Authentication via Money Card is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:money_card=yes is displayed as \"Authentication via Money Card is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:debit_card", - "description": "Layer 'Charging stations' shows authentication:debit_card=yes with a fixed text, namely 'Authentication via debit card is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:debit_card=yes is displayed as \"Authentication via debit card is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows authentication:none=yes with a fixed text, namely 'Charging here is (also) possible without authentication' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:none=yes is displayed as \"Charging here is (also) possible without authentication\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:phone_call:number", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'authentication:phone_call:number' (in the mapcomplete.org theme 'Charging stations') (This is only shown if authentication:phone_call=yes | authentication:short_message=yes)" + "description": "Values of `authentication:phone_call:number` are shown with \"Authenticate by calling or SMS'ing to {authentication:phone_call:number}\" and can be updated. The question is \"What's the phone number for authentication call or SMS?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Auth_phone", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "maxstay", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Charging stations') (This is only shown if motorcar=yes | hgv=yes | bus=yes)" + "description": "Values of `maxstay` are shown with \"One can stay at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum amount of time one is allowed to stay here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#maxstay", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "maxstay", - "description": "Layer 'Charging stations' shows maxstay=unlimited with a fixed text, namely 'There is no limit to the amount of time one can stay here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if motorcar=yes | hgv=yes | bus=yes)", - "value": "unlimited" + "value": "unlimited", + "description": "maxstay=unlimited is displayed as \"There is no limit to the amount of time one can stay here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#maxstay", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'network' (in the mapcomplete.org theme 'Charging stations')" + "description": "Values of `network` are shown with \"Part of the network {network}\" and can be updated. The question is \"Is this charging station part of a network?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "no:network", - "description": "Layer 'Charging stations' shows no:network=yes with a fixed text, namely 'Not part of a bigger network, e.g. because the charging station is maintained by a local business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "yes" + "value": "yes", + "description": "no:network=yes is displayed as \"Not part of a bigger network, e.g. because the charging station is maintained by a local business\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=none with a fixed text, namely 'Not part of a bigger network' (in the mapcomplete.org theme 'Charging stations')", - "value": "none" + "value": "none", + "description": "network=none is displayed as \"Not part of a bigger network\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=AeroVironment with a fixed text, namely 'AeroVironment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "AeroVironment" + "value": "AeroVironment", + "description": "network=AeroVironment is displayed as \"AeroVironment\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Blink with a fixed text, namely 'Blink' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "Blink" + "value": "Blink", + "description": "network=Blink is displayed as \"Blink\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=EVgo with a fixed text, namely 'EVgo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "EVgo" + "value": "EVgo", + "description": "network=EVgo is displayed as \"EVgo\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Allego with a fixed text, namely 'Allego' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "Allego" + "value": "Allego", + "description": "network=Allego is displayed as \"Allego\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Blue Corner with a fixed text, namely 'Blue Corner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "Blue Corner" + "value": "Blue Corner", + "description": "network=Blue Corner is displayed as \"Blue Corner\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Tesla with a fixed text, namely 'Tesla' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "Tesla" + "value": "Tesla", + "description": "network=Tesla is displayed as \"Tesla\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operator", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Charging stations') (This is only shown if network=)" + "description": "Values of `operator` are shown with \"This charging station is operated by {operator}\" and can be updated. The question is \"Who is the operator of this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operator", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network= with a fixed text, namely 'Actually, {operator} is the network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key network. (This is only shown if network=)", - "value": "" + "description": "network= is displayed as \"Actually, {operator} is the network\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operator", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "phone", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Charging stations')" + "description": "Values of `phone` are shown with \"In case of problems, call {phone}\" and can be updated. The question is \"What number can one call if there is a problem with this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#phone", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "email", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Charging stations')" + "description": "Values of `email` are shown with \"In case of problems, send an email to {email}\" and can be updated. The question is \"What is the email address of the operator?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#email", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "website", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Charging stations')" + "description": "Values of `website` are shown with \"More info on {website}\" and can be updated. The question is \"What is the website where one can find more information about this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#website", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "level", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Charging stations') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#single_level", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "location", - "description": "Layer 'Charging stations' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Charging stations') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#single_level", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "level", - "description": "Layer 'Charging stations' 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 'Charging stations') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#single_level", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "level", - "description": "Layer 'Charging stations' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#single_level", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "level", - "description": "Layer 'Charging stations' 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 'Charging stations') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#single_level", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "level", - "description": "Layer 'Charging stations' 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 'Charging stations') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#single_level", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "ref", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Charging stations') (This is only shown if network~.+)" + "description": "Values of `ref` are shown with \"Reference number is {ref}\" and can be updated. The question is \"What is the reference number of this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#ref", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "broken" + "value": "broken", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "parking:fee", - "description": "Layer 'Charging stations' shows parking:fee=no with a fixed text, namely 'No additional parking cost while charging' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if motor_vehicle=yes | hgv=yes | bus=yes | bicycle=no | bicycle=)", - "value": "no" + "value": "no", + "description": "parking:fee=no is displayed as \"No additional parking cost while charging\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Parking_fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "parking:fee", - "description": "Layer 'Charging stations' shows parking:fee=yes with a fixed text, namely 'An additional parking fee should be paid while charging' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if motor_vehicle=yes | hgv=yes | bus=yes | bicycle=no | bicycle=)", - "value": "yes" + "value": "yes", + "description": "parking:fee=yes is displayed as \"An additional parking fee should be paid while charging\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Parking_fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "man_made", - "description": "The MapComplete theme Charging stations has a layer Charge points showing features with this tag", - "value": "charge_point" - }, - { - "key": "id", - "description": "Layer 'Charge points' 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 'Charging stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Charge points allows to upload images and adds them under the 'panoramax'-tag (and 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 'Charge points allows to upload images and adds them under the 'panoramax'-tag (and 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 'Charge points allows to upload images and adds them under the 'panoramax'-tag (and 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 'Charge points allows to upload images and adds them under the 'panoramax'-tag (and 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 'Charge points allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "charge_point", + "description": "Features with this tag are displayed by layer Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charge_point.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "ref", - "description": "Layer 'Charge points' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "capacity", - "description": "Layer 'Charge points' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:schuko", - "description": "Layer 'Charge points' shows socket:schuko=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:schuko", - "description": "Layer 'Charge points' shows socket:schuko~.+ & socket:schuko!=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:typee", - "description": "Layer 'Charge points' shows socket:typee=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:typee", - "description": "Layer 'Charge points' shows socket:typee~.+ & socket:typee!=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:chademo", - "description": "Layer 'Charge points' shows socket:chademo=1 with a fixed text, namely 'Chademo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:chademo", - "description": "Layer 'Charge points' shows socket:chademo~.+ & socket:chademo!=1 with a fixed text, namely 'Chademo' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:type1_cable", - "description": "Layer 'Charge points' shows socket:type1_cable=1 with a fixed text, namely 'Type 1 with cable (J1772)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:type1_cable", - "description": "Layer 'Charge points' shows socket:type1_cable~.+ & socket:type1_cable!=1 with a fixed text, namely 'Type 1 with cable (J1772)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:type1", - "description": "Layer 'Charge points' shows socket:type1=1 with a fixed text, namely 'Type 1 without cable (J1772)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:type1", - "description": "Layer 'Charge points' shows socket:type1~.+ & socket:type1!=1 with a fixed text, namely 'Type 1 without cable (J1772)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:type1_combo", - "description": "Layer 'Charge points' shows socket:type1_combo=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:type1_combo", - "description": "Layer 'Charge points' shows socket:type1_combo~.+ & socket:type1_combo!=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:tesla_supercharger", - "description": "Layer 'Charge points' shows socket:tesla_supercharger=1 with a fixed text, namely 'Tesla Supercharger' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:tesla_supercharger", - "description": "Layer 'Charge points' shows socket:tesla_supercharger~.+ & socket:tesla_supercharger!=1 with a fixed text, namely 'Tesla Supercharger' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:type2", - "description": "Layer 'Charge points' shows socket:type2=1 with a fixed text, namely 'Type 2 (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:type2", - "description": "Layer 'Charge points' shows socket:type2~.+ & socket:type2!=1 with a fixed text, namely 'Type 2 (mennekes)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:type2_combo", - "description": "Layer 'Charge points' shows socket:type2_combo=1 with a fixed text, namely 'Type 2 CCS (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:type2_combo", - "description": "Layer 'Charge points' shows socket:type2_combo~.+ & socket:type2_combo!=1 with a fixed text, namely 'Type 2 CCS (mennekes)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:type2_cable", - "description": "Layer 'Charge points' shows socket:type2_cable=1 with a fixed text, namely 'Type 2 with cable (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:type2_cable", - "description": "Layer 'Charge points' shows socket:type2_cable~.+ & socket:type2_cable!=1 with a fixed text, namely 'Type 2 with cable (mennekes)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charge points' shows socket:tesla_supercharger_ccs=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charge points' shows socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:tesla_destination", - "description": "Layer 'Charge points' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla Supercharger (destination)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:tesla_destination", - "description": "Layer 'Charge points' shows socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:tesla_destination", - "description": "Layer 'Charge points' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:tesla_destination", - "description": "Layer 'Charge points' shows socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country!=us with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:USB-A", - "description": "Layer 'Charge points' shows socket:USB-A=1 with a fixed text, namely 'USB to charge phones and small electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:USB-A", - "description": "Layer 'Charge points' shows socket:USB-A~.+ & socket:USB-A!=1 with a fixed text, namely 'USB to charge phones and small electronics' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:bosch_3pin", - "description": "Layer 'Charge points' shows socket:bosch_3pin=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:bosch_3pin", - "description": "Layer 'Charge points' shows socket:bosch_3pin~.+ & socket:bosch_3pin!=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:bosch_5pin", - "description": "Layer 'Charge points' shows socket:bosch_5pin=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:bosch_5pin", - "description": "Layer 'Charge points' shows socket:bosch_5pin~.+ & socket:bosch_5pin!=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:bs1363", - "description": "Layer 'Charge points' shows socket:bs1363=1 with a fixed text, namely 'BS1363 (Type G)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:bs1363", - "description": "Layer 'Charge points' shows socket:bs1363~.+ & socket:bs1363!=1 with a fixed text, namely 'BS1363 (Type G)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:nema5_15", - "description": "Layer 'Charge points' shows socket:nema5_15=1 with a fixed text, namely 'NEMA 5-15 (Type B)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:nema5_15", - "description": "Layer 'Charge points' shows socket:nema5_15~.+ & socket:nema5_15!=1 with a fixed text, namely 'NEMA 5-15 (Type B)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:sev1011_t23", - "description": "Layer 'Charge points' shows socket:sev1011_t23=1 with a fixed text, namely 'SEV 1011 T23 (Type J)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:sev1011_t23", - "description": "Layer 'Charge points' shows socket:sev1011_t23~.+ & socket:sev1011_t23!=1 with a fixed text, namely 'SEV 1011 T23 (Type J)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:as3112", - "description": "Layer 'Charge points' shows socket:as3112=1 with a fixed text, namely 'AS3112 (Type I)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:as3112", - "description": "Layer 'Charge points' shows socket:as3112~.+ & socket:as3112!=1 with a fixed text, namely 'AS3112 (Type I)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:nema_5_20", - "description": "Layer 'Charge points' shows socket:nema_5_20=1 with a fixed text, namely 'NEMA 5-20 (Type B)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations')", - "value": "1" - }, - { - "key": "socket:nema_5_20", - "description": "Layer 'Charge points' shows socket:nema_5_20~.+ & socket:nema_5_20!=1 with a fixed text, namely 'NEMA 5-20 (Type B)' (in the mapcomplete.org theme 'Charging stations')" - }, - { - "key": "socket:schuko", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:schuko' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" - }, - { - "key": "socket:typee", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:typee' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)" - }, - { - "key": "socket:chademo", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:chademo' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" - }, - { - "key": "socket:type1_cable", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1_cable' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" - }, - { - "key": "socket:type1", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)" - }, - { - "key": "socket:type1_combo", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1_combo' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" - }, - { - "key": "socket:tesla_supercharger", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_supercharger' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" - }, - { - "key": "socket:type2", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)" - }, - { - "key": "socket:type2_combo", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2_combo' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" - }, - { - "key": "socket:type2_cable", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2_cable' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" - }, - { - "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" - }, - { - "key": "socket:tesla_destination", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" - }, - { - "key": "socket:tesla_destination", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" - }, - { - "key": "socket:USB-A", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:USB-A' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" - }, - { - "key": "socket:bosch_3pin", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bosch_3pin' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" - }, - { - "key": "socket:bosch_5pin", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bosch_5pin' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" - }, - { - "key": "socket:bs1363", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bs1363' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" - }, - { - "key": "socket:nema5_15", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:nema5_15' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" - }, - { - "key": "socket:sev1011_t23", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:sev1011_t23' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" - }, - { - "key": "socket:as3112", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:as3112' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" - }, - { - "key": "socket:nema_5_20", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:nema_5_20' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" - }, - { - "key": "socket:schuko:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:schuko:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" - }, - { - "key": "socket:schuko:voltage", - "description": "Layer 'Charge points' shows socket:schuko:voltage=230 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "230" - }, - { - "key": "socket:schuko:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:schuko:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" - }, - { - "key": "socket:schuko:current", - "description": "Layer 'Charge points' shows socket:schuko:current=16 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "16" - }, - { - "key": "socket:schuko:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:schuko:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" - }, - { - "key": "socket:schuko:output", - "description": "Layer 'Charge points' shows socket:schuko:output=3.6 kW with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "3.6 kW" - }, - { - "key": "socket:typee:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:typee:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)" - }, - { - "key": "socket:typee:voltage", - "description": "Layer 'Charge points' shows socket:typee:voltage=230 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "230" - }, - { - "key": "socket:typee:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:typee:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)" - }, - { - "key": "socket:typee:current", - "description": "Layer 'Charge points' shows socket:typee:current=16 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "16" - }, - { - "key": "socket:typee:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:typee:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)" - }, - { - "key": "socket:typee:output", - "description": "Layer 'Charge points' shows socket:typee:output=3 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "3 kW" - }, - { - "key": "socket:typee:output", - "description": "Layer 'Charge points' shows socket:typee:output=22 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "22 kW" - }, - { - "key": "socket:chademo:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:chademo:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" - }, - { - "key": "socket:chademo:voltage", - "description": "Layer 'Charge points' shows socket:chademo:voltage=500 with a fixed text, namely 'Chademo outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "500" - }, - { - "key": "socket:chademo:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:chademo:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" - }, - { - "key": "socket:chademo:current", - "description": "Layer 'Charge points' shows socket:chademo:current=120 with a fixed text, namely 'Chademo outputs at most 120 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "120" - }, - { - "key": "socket:chademo:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:chademo:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" - }, - { - "key": "socket:chademo:output", - "description": "Layer 'Charge points' shows socket:chademo:output=50 kW with a fixed text, namely 'Chademo outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "50 kW" - }, - { - "key": "socket:type1_cable:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" - }, - { - "key": "socket:type1_cable:voltage", - "description": "Layer 'Charge points' shows socket:type1_cable:voltage=200 with a fixed text, namely 'Type 1 with cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "200" - }, - { - "key": "socket:type1_cable:voltage", - "description": "Layer 'Charge points' shows socket:type1_cable:voltage=240 with a fixed text, namely 'Type 1 with cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "240" - }, - { - "key": "socket:type1_cable:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1_cable:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" - }, - { - "key": "socket:type1_cable:current", - "description": "Layer 'Charge points' shows socket:type1_cable:current=32 with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "32" - }, - { - "key": "socket:type1_cable:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1_cable:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" - }, - { - "key": "socket:type1_cable:output", - "description": "Layer 'Charge points' shows socket:type1_cable:output=3.7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "3.7 kW" - }, - { - "key": "socket:type1_cable:output", - "description": "Layer 'Charge points' shows socket:type1_cable:output=7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "7 kW" - }, - { - "key": "socket:type1:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)" - }, - { - "key": "socket:type1:voltage", - "description": "Layer 'Charge points' shows socket:type1:voltage=200 with a fixed text, namely 'Type 1 without cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "200" - }, - { - "key": "socket:type1:voltage", - "description": "Layer 'Charge points' shows socket:type1:voltage=240 with a fixed text, namely 'Type 1 without cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "240" - }, - { - "key": "socket:type1:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)" - }, - { - "key": "socket:type1:current", - "description": "Layer 'Charge points' shows socket:type1:current=32 with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "32" - }, - { - "key": "socket:type1:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)" - }, - { - "key": "socket:type1:output", - "description": "Layer 'Charge points' shows socket:type1:output=3.7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "3.7 kW" - }, - { - "key": "socket:type1:output", - "description": "Layer 'Charge points' shows socket:type1:output=6.6 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "6.6 kW" - }, - { - "key": "socket:type1:output", - "description": "Layer 'Charge points' shows socket:type1:output=7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "7 kW" - }, - { - "key": "socket:type1:output", - "description": "Layer 'Charge points' shows socket:type1:output=7.2 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "7.2 kW" - }, - { - "key": "socket:type1_combo:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" - }, - { - "key": "socket:type1_combo:voltage", - "description": "Layer 'Charge points' shows socket:type1_combo:voltage=400 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "400" - }, - { - "key": "socket:type1_combo:voltage", - "description": "Layer 'Charge points' shows socket:type1_combo:voltage=1000 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 1000 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "1000" - }, - { - "key": "socket:type1_combo:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1_combo:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" - }, - { - "key": "socket:type1_combo:current", - "description": "Layer 'Charge points' shows socket:type1_combo:current=50 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "50" - }, - { - "key": "socket:type1_combo:current", - "description": "Layer 'Charge points' shows socket:type1_combo:current=125 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "125" - }, - { - "key": "socket:type1_combo:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type1_combo:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" - }, - { - "key": "socket:type1_combo:output", - "description": "Layer 'Charge points' shows socket:type1_combo:output=50 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "50 kW" - }, - { - "key": "socket:type1_combo:output", - "description": "Layer 'Charge points' shows socket:type1_combo:output=62.5 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "62.5 kW" - }, - { - "key": "socket:type1_combo:output", - "description": "Layer 'Charge points' shows socket:type1_combo:output=150 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "150 kW" - }, - { - "key": "socket:type1_combo:output", - "description": "Layer 'Charge points' shows socket:type1_combo:output=350 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "350 kW" - }, - { - "key": "socket:tesla_supercharger:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" - }, - { - "key": "socket:tesla_supercharger:voltage", - "description": "Layer 'Charge points' shows socket:tesla_supercharger:voltage=480 with a fixed text, namely 'Tesla Supercharger outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "480" - }, - { - "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_supercharger:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" - }, - { - "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charge points' shows socket:tesla_supercharger:current=125 with a fixed text, namely 'Tesla Supercharger outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "125" - }, - { - "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charge points' shows socket:tesla_supercharger:current=350 with a fixed text, namely 'Tesla Supercharger outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "350" - }, - { - "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_supercharger:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" - }, - { - "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charge points' shows socket:tesla_supercharger:output=120 kW with a fixed text, namely 'Tesla Supercharger outputs at most 120 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "120 kW" - }, - { - "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charge points' shows socket:tesla_supercharger:output=150 kW with a fixed text, namely 'Tesla Supercharger outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "150 kW" - }, - { - "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charge points' shows socket:tesla_supercharger:output=250 kW with a fixed text, namely 'Tesla Supercharger outputs at most 250 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "250 kW" - }, - { - "key": "socket:type2:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)" - }, - { - "key": "socket:type2:voltage", - "description": "Layer 'Charge points' shows socket:type2:voltage=230 with a fixed text, namely 'Type 2 (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "230" - }, - { - "key": "socket:type2:voltage", - "description": "Layer 'Charge points' shows socket:type2:voltage=400 with a fixed text, namely 'Type 2 (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "400" - }, - { - "key": "socket:type2:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)" - }, - { - "key": "socket:type2:current", - "description": "Layer 'Charge points' shows socket:type2:current=16 with a fixed text, namely 'Type 2 (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "16" - }, - { - "key": "socket:type2:current", - "description": "Layer 'Charge points' shows socket:type2:current=32 with a fixed text, namely 'Type 2 (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "32" - }, - { - "key": "socket:type2:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)" - }, - { - "key": "socket:type2:output", - "description": "Layer 'Charge points' shows socket:type2:output=11 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "11 kW" - }, - { - "key": "socket:type2:output", - "description": "Layer 'Charge points' shows socket:type2:output=22 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "22 kW" - }, - { - "key": "socket:type2_combo:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" - }, - { - "key": "socket:type2_combo:voltage", - "description": "Layer 'Charge points' shows socket:type2_combo:voltage=500 with a fixed text, namely 'Type 2 CCS (mennekes) outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "500" - }, - { - "key": "socket:type2_combo:voltage", - "description": "Layer 'Charge points' shows socket:type2_combo:voltage=920 with a fixed text, namely 'Type 2 CCS (mennekes) outputs 920 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "920" - }, - { - "key": "socket:type2_combo:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2_combo:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" - }, - { - "key": "socket:type2_combo:current", - "description": "Layer 'Charge points' shows socket:type2_combo:current=125 with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "125" - }, - { - "key": "socket:type2_combo:current", - "description": "Layer 'Charge points' shows socket:type2_combo:current=350 with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "350" - }, - { - "key": "socket:type2_combo:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2_combo:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" - }, - { - "key": "socket:type2_combo:output", - "description": "Layer 'Charge points' shows socket:type2_combo:output=50 kW with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "50 kW" - }, - { - "key": "socket:type2_cable:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" - }, - { - "key": "socket:type2_cable:voltage", - "description": "Layer 'Charge points' shows socket:type2_cable:voltage=230 with a fixed text, namely 'Type 2 with cable (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "230" - }, - { - "key": "socket:type2_cable:voltage", - "description": "Layer 'Charge points' shows socket:type2_cable:voltage=400 with a fixed text, namely 'Type 2 with cable (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "400" - }, - { - "key": "socket:type2_cable:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2_cable:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" - }, - { - "key": "socket:type2_cable:current", - "description": "Layer 'Charge points' shows socket:type2_cable:current=16 with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "16" - }, - { - "key": "socket:type2_cable:current", - "description": "Layer 'Charge points' shows socket:type2_cable:current=32 with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "32" - }, - { - "key": "socket:type2_cable:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:type2_cable:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" - }, - { - "key": "socket:type2_cable:output", - "description": "Layer 'Charge points' shows socket:type2_cable:output=11 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "11 kW" - }, - { - "key": "socket:type2_cable:output", - "description": "Layer 'Charge points' shows socket:type2_cable:output=22 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "22 kW" - }, - { - "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" - }, - { - "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charge points' shows socket:tesla_supercharger_ccs:voltage=500 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "500" - }, - { - "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charge points' shows socket:tesla_supercharger_ccs:voltage=920 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 920 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "920" - }, - { - "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" - }, - { - "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charge points' shows socket:tesla_supercharger_ccs:current=125 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "125" - }, - { - "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charge points' shows socket:tesla_supercharger_ccs:current=350 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "350" - }, - { - "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" - }, - { - "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charge points' shows socket:tesla_supercharger_ccs:output=50 kW with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "50 kW" - }, - { - "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" - }, - { - "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charge points' shows socket:tesla_destination:voltage=480 with a fixed text, namely 'Tesla Supercharger (destination) outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "480" - }, - { - "key": "socket:tesla_destination:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_destination:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" - }, - { - "key": "socket:tesla_destination:current", - "description": "Layer 'Charge points' shows socket:tesla_destination:current=125 with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "125" - }, - { - "key": "socket:tesla_destination:current", - "description": "Layer 'Charge points' shows socket:tesla_destination:current=350 with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "350" - }, - { - "key": "socket:tesla_destination:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_destination:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" - }, - { - "key": "socket:tesla_destination:output", - "description": "Layer 'Charge points' shows socket:tesla_destination:output=120 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 120 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "120 kW" - }, - { - "key": "socket:tesla_destination:output", - "description": "Layer 'Charge points' shows socket:tesla_destination:output=150 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "150 kW" - }, - { - "key": "socket:tesla_destination:output", - "description": "Layer 'Charge points' shows socket:tesla_destination:output=250 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 250 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "250 kW" - }, - { - "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" - }, - { - "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charge points' shows socket:tesla_destination:voltage=230 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "230" - }, - { - "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charge points' shows socket:tesla_destination:voltage=400 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "400" - }, - { - "key": "socket:tesla_destination:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_destination:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" - }, - { - "key": "socket:tesla_destination:current", - "description": "Layer 'Charge points' shows socket:tesla_destination:current=16 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "16" - }, - { - "key": "socket:tesla_destination:current", - "description": "Layer 'Charge points' shows socket:tesla_destination:current=32 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "32" - }, - { - "key": "socket:tesla_destination:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:tesla_destination:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" - }, - { - "key": "socket:tesla_destination:output", - "description": "Layer 'Charge points' shows socket:tesla_destination:output=11 kW with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "11 kW" - }, - { - "key": "socket:tesla_destination:output", - "description": "Layer 'Charge points' shows socket:tesla_destination:output=22 kW with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "22 kW" - }, - { - "key": "socket:USB-A:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:USB-A:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" - }, - { - "key": "socket:USB-A:voltage", - "description": "Layer 'Charge points' shows socket:USB-A:voltage=5 with a fixed text, namely 'USB to charge phones and small electronics outputs 5 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "5" - }, - { - "key": "socket:USB-A:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:USB-A:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" - }, - { - "key": "socket:USB-A:current", - "description": "Layer 'Charge points' shows socket:USB-A:current=1 with a fixed text, namely 'USB to charge phones and small electronics outputs at most 1 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "1" - }, - { - "key": "socket:USB-A:current", - "description": "Layer 'Charge points' shows socket:USB-A:current=2 with a fixed text, namely 'USB to charge phones and small electronics outputs at most 2 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "2" - }, - { - "key": "socket:USB-A:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:USB-A:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" - }, - { - "key": "socket:USB-A:output", - "description": "Layer 'Charge points' shows socket:USB-A:output=5W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5W' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "5W" - }, - { - "key": "socket:USB-A:output", - "description": "Layer 'Charge points' shows socket:USB-A:output=10W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10W' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "10W" - }, - { - "key": "socket:bosch_3pin:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" - }, - { - "key": "socket:bosch_3pin:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bosch_3pin:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" - }, - { - "key": "socket:bosch_3pin:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bosch_3pin:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" - }, - { - "key": "socket:bosch_5pin:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" - }, - { - "key": "socket:bosch_5pin:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bosch_5pin:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" - }, - { - "key": "socket:bosch_5pin:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bosch_5pin:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" - }, - { - "key": "socket:bs1363:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bs1363:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" - }, - { - "key": "socket:bs1363:voltage", - "description": "Layer 'Charge points' shows socket:bs1363:voltage=230 with a fixed text, namely 'BS1363 (Type G) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "230" - }, - { - "key": "socket:bs1363:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bs1363:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" - }, - { - "key": "socket:bs1363:current", - "description": "Layer 'Charge points' shows socket:bs1363:current=13 with a fixed text, namely 'BS1363 (Type G) outputs at most 13 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "13" - }, - { - "key": "socket:bs1363:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:bs1363:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" - }, - { - "key": "socket:bs1363:output", - "description": "Layer 'Charge points' shows socket:bs1363:output=3kW with a fixed text, namely 'BS1363 (Type G) outputs at most 3kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "3kW" - }, - { - "key": "socket:nema5_15:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:nema5_15:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" - }, - { - "key": "socket:nema5_15:voltage", - "description": "Layer 'Charge points' shows socket:nema5_15:voltage=120 with a fixed text, namely 'NEMA 5-15 (Type B) outputs 120 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "120" - }, - { - "key": "socket:nema5_15:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:nema5_15:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" - }, - { - "key": "socket:nema5_15:current", - "description": "Layer 'Charge points' shows socket:nema5_15:current=15 with a fixed text, namely 'NEMA 5-15 (Type B) outputs at most 15 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "15" - }, - { - "key": "socket:nema5_15:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:nema5_15:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" - }, - { - "key": "socket:nema5_15:output", - "description": "Layer 'Charge points' shows socket:nema5_15:output=1.8 kW with a fixed text, namely 'NEMA 5-15 (Type B) outputs at most 1.8 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "1.8 kW" - }, - { - "key": "socket:sev1011_t23:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:sev1011_t23:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" - }, - { - "key": "socket:sev1011_t23:voltage", - "description": "Layer 'Charge points' shows socket:sev1011_t23:voltage=230 with a fixed text, namely 'SEV 1011 T23 (Type J) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "230" - }, - { - "key": "socket:sev1011_t23:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:sev1011_t23:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" - }, - { - "key": "socket:sev1011_t23:current", - "description": "Layer 'Charge points' shows socket:sev1011_t23:current=16 with a fixed text, namely 'SEV 1011 T23 (Type J) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "16" - }, - { - "key": "socket:sev1011_t23:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:sev1011_t23:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" - }, - { - "key": "socket:sev1011_t23:output", - "description": "Layer 'Charge points' shows socket:sev1011_t23:output=3.7 kW with a fixed text, namely 'SEV 1011 T23 (Type J) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "3.7 kW" - }, - { - "key": "socket:as3112:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:as3112:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" - }, - { - "key": "socket:as3112:voltage", - "description": "Layer 'Charge points' shows socket:as3112:voltage=230 with a fixed text, namely 'AS3112 (Type I) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "230" - }, - { - "key": "socket:as3112:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:as3112:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" - }, - { - "key": "socket:as3112:current", - "description": "Layer 'Charge points' shows socket:as3112:current=10 with a fixed text, namely 'AS3112 (Type I) outputs at most 10 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "10" - }, - { - "key": "socket:as3112:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:as3112:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" - }, - { - "key": "socket:as3112:output", - "description": "Layer 'Charge points' shows socket:as3112:output=2.3 kW with a fixed text, namely 'AS3112 (Type I) outputs at most 2.3 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "2.3 kW" - }, - { - "key": "socket:nema_5_20:voltage", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:nema_5_20:voltage' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" - }, - { - "key": "socket:nema_5_20:voltage", - "description": "Layer 'Charge points' shows socket:nema_5_20:voltage=120 with a fixed text, namely 'NEMA 5-20 (Type B) outputs 120 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "120" - }, - { - "key": "socket:nema_5_20:current", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:nema_5_20:current' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" - }, - { - "key": "socket:nema_5_20:current", - "description": "Layer 'Charge points' shows socket:nema_5_20:current=20 with a fixed text, namely 'NEMA 5-20 (Type B) outputs at most 20 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "20" - }, - { - "key": "socket:nema_5_20:output", - "description": "Layer 'Charge points' shows and asks freeform values for key 'socket:nema_5_20:output' (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" - }, - { - "key": "socket:nema_5_20:output", - "description": "Layer 'Charge points' shows socket:nema_5_20:output=2.4 kW with a fixed text, namely 'NEMA 5-20 (Type B) outputs at most 2.4 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Charging stations') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "2.4 kW" + "description": "Values of `ref` are shown with \"The reference of this charge point is {ref}\" and can be updated. The question is \"What is the reference number of this charge point?\" by layer Charge points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charge_point.md#ref", + "icon_url": "./assets/themes/charging_stations/plug.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_circular_economy.json b/Docs/TagInfo/mapcomplete_circular_economy.json index 38d07b0747..a729098ed0 100644 --- a/Docs/TagInfo/mapcomplete_circular_economy.json +++ b/Docs/TagInfo/mapcomplete_circular_economy.json @@ -7,2105 +7,2553 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/circular_economy/circular.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Circular economy has a layer Bookcases showing features with this tag", - "value": "public_bookcase" + "value": "public_bookcase", + "description": "Features with this tag are displayed by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "id", - "description": "Layer 'Bookcases' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Circular economy') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Bookcases, Bicycle library, Bicycle pump and repair, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Bookcases, Bicycle library, Bicycle pump and repair, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "panoramax", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Bookcases, Bicycle library, Bicycle pump and repair, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "mapillary", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Bookcases, Bicycle library, Bicycle pump and repair, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "wikidata", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Bookcases, Bicycle library, Bicycle pump and repair, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "wikipedia", - "description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Bookcases, Bicycle library, Bicycle pump and repair, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "name", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `name` are shown with \"The name of this bookcase is {name}\" and can be updated. The question is \"What is the name of this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "noname", - "description": "Layer 'Bookcases' shows noname=yes & name= with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "noname=yes & name= is displayed as \"This bookcase doesn't have a name\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "name", - "description": "Layer 'Bookcases' shows noname=yes & name= with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key name.", - "value": "" + "description": "noname=yes & name= is displayed as \"This bookcase doesn't have a name\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "capacity", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `capacity` are shown with \"{capacity} books fit in this bookcase\" and can be updated. The question is \"How many books fit into this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_capacity", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "books", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'books' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `books` are shown with \"This place mostly serves {books}\" and can be updated. The question is \"What kind of books can be found in this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "books", - "description": "Layer 'Bookcases' shows books=children with a fixed text, namely 'Mostly children books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "children" + "value": "children", + "description": "books=children is displayed as \"Mostly children books\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "books", - "description": "Layer 'Bookcases' shows books=adults with a fixed text, namely 'Mostly books for adults' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "adults" + "value": "adults", + "description": "books=adults is displayed as \"Mostly books for adults\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "indoor", - "description": "Layer 'Bookcases' shows indoor=yes with a fixed text, namely 'This bookcase is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This bookcase is located indoors\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "indoor", - "description": "Layer 'Bookcases' shows indoor=no with a fixed text, namely 'This bookcase is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This bookcase is located outdoors\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "indoor", - "description": "Layer 'Bookcases' shows indoor= with a fixed text, namely 'This bookcase is located outdoors' (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= is displayed as \"This bookcase is located outdoors\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "access", - "description": "Layer 'Bookcases' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if indoor=yes)", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Publicly accessible\" by layers Bookcases, Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_accessible", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "access", - "description": "Layer 'Bookcases' shows access=customers with a fixed text, namely 'Only accessible to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if indoor=yes)", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only accessible to customers\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_accessible", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "operator", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who maintains this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_operator", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "brand", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Circular economy') (This is only shown if ref=)" + "description": "Values of `brand` are shown with \"This public bookcase is part of {brand}\" and can be updated. The question is \"Is this public bookcase part of a bigger network?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_brand", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "nobrand", - "description": "Layer 'Bookcases' shows nobrand=yes with a fixed text, namely 'This public bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if ref=)", - "value": "yes" + "value": "yes", + "description": "nobrand=yes is displayed as \"This public bookcase is not part of a bigger network\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_brand", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "ref", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Circular economy') (This is only shown if brand~.+)" + "description": "Values of `ref` are shown with \"The reference number of this public bookcase within {brand} is {ref}\" and can be updated. The question is \"What is the reference number of this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "nobrand", - "description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if brand~.+)", - "value": "yes" + "value": "yes", + "description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "brand", - "description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key brand. (This is only shown if brand~.+)", - "value": "" + "description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "ref", - "description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key ref. (This is only shown if brand~.+)", - "value": "" + "description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "start_date", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `start_date` are shown with \"Installed on {start_date}\" and can be updated. The question is \"When was this public bookcase installed?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_start_date", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "website", - "description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `website` are shown with \"{link(More info on the website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this public bookcase?\" by layer Bookcases", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_website", + "icon_url": "./assets/themes/bookcases/bookcase.svg" }, { "key": "amenity", - "description": "The MapComplete theme Circular economy has a layer Bicycle library showing features with this tag", - "value": "bicycle_library" - }, - { - "key": "id", - "description": "Layer 'Bicycle library' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Circular economy') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bicycle_library", + "description": "Features with this tag are displayed by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "name", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `name` are shown with \"This bicycle library is called {name}\" and can be updated. The question is \"What is the name of this bicycle library?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_name", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "website", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Bicycle library, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Bicycle library' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Circular economy')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Bicycle library, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "phone", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Bicycle library, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Bicycle library' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Circular economy')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Bicycle library, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Bicycle library, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Bicycle library' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Circular economy')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Bicycle library, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Bicycle library' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Circular economy')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Bicycle library, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Bicycle library, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#opening_hours", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle library' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Circular economy')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Bicycle library, Bicycle pump and repair, Tool libraries, Repair cafés and assisted repair workshops, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#opening_hours", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `charge` are shown with \"Lending a bicycle costs {charge}\" and can be updated. The question is \"How much does lending a bicycle cost?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "fee", - "description": "Layer 'Bicycle library' shows fee=no & charge= with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "fee=no & charge= is displayed as \"Lending a bicycle is free\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows fee=no & charge= with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & charge= is displayed as \"Lending a bicycle is free\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "fee", - "description": "Layer 'Bicycle library' shows fee=yes & charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "fee=yes & charge=€20warranty + €20/year is displayed as \"Lending a bicycle costs €20/year and €20 warranty\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows fee=yes & charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "€20warranty + €20/year" + "value": "€20warranty + €20/year", + "description": "fee=yes & charge=€20warranty + €20/year is displayed as \"Lending a bicycle costs €20/year and €20 warranty\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=child with a fixed text, namely 'Bikes for children available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "child" + "value": "child", + "description": "bicycle_library:for=child is displayed as \"Bikes for children available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=adult with a fixed text, namely 'Bikes for adult available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "adult" + "value": "adult", + "description": "bicycle_library:for=adult is displayed as \"Bikes for adult available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=disabled with a fixed text, namely 'Bikes for disabled persons available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "disabled" + "value": "disabled", + "description": "bicycle_library:for=disabled is displayed as \"Bikes for disabled persons available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "description", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layers Bicycle library, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#description", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "amenity", - "description": "The MapComplete theme Circular economy has a layer Bicycle pump and repair showing features with this tag", - "value": "bicycle_repair_station" - }, - { - "key": "id", - "description": "Layer 'Bicycle pump and repair' 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 'Circular economy') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bicycle_repair_station", + "description": "Features with this tag are displayed by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no & service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "service:bicycle:tools=no & service:bicycle:pump=yes is displayed as \"There is only a pump present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no & service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:tools=no & service:bicycle:pump=yes is displayed as \"There is only a pump present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes & service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers, …) present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:tools=yes & service:bicycle:pump=no is displayed as \"There are only tools (screwdrivers, pliers, …) present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes & service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers, …) present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "service:bicycle:tools=yes & service:bicycle:pump=no is displayed as \"There are only tools (screwdrivers, pliers, …) present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes & service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:tools=yes & service:bicycle:pump=yes is displayed as \"There are both tools and a pump present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes & service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:tools=yes & service:bicycle:pump=yes is displayed as \"There are both tools and a pump present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump:operational_status", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=broken with a fixed text, namely 'The bike pump is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump=yes)", - "value": "broken" + "value": "broken", + "description": "service:bicycle:pump:operational_status=broken is displayed as \"The bike pump is broken\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#Operational_status", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump:operational_status", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=operational with a fixed text, namely 'The bike pump is operational' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump=yes)", - "value": "operational" + "value": "operational", + "description": "service:bicycle:pump:operational_status=operational is displayed as \"The bike pump is operational\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#Operational_status", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this bicycle repair point open?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#opening_hours_24_7", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle pump and repair' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Bicycle pump and repair' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Circular economy')", - "value": "closed" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "public", + "description": "access=public is displayed as \"Publicly accessible\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=public with a fixed text, namely 'Publicly accessible' (in the mapcomplete.org theme 'Circular economy')", - "value": "public" + "value": "customers", + "description": "access=customers is displayed as \"Only for customers\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=customers with a fixed text, namely 'Only for customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "customers" + "value": "private", + "description": "access=private is displayed as \"Not accessible to the general public\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/svg/invalid.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=private with a fixed text, namely 'Not accessible to the general public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "private" - }, - { - "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=no with a fixed text, namely 'Not accessible to the general public' (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible to the general public\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/svg/invalid.svg" }, { "key": "operator", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `operator` are shown with \"Maintained by {operator}\" and can be updated. The question is \"Who maintains this cycle pump?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_operator", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "email", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of the maintainer?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_email", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "phone", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `phone` are shown with \"{phone}\" and can be updated. The question is \"What is the phone number of the maintainer?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_phone", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:chain_tool", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=yes with a fixed text, namely 'There is a chain tool' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:tools=yes)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:chain_tool=yes is displayed as \"There is a chain tool\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_bike_chain_tool", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:chain_tool", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=no with a fixed text, namely 'There is no chain tool' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:tools=yes)", - "value": "no" + "value": "no", + "description": "service:bicycle:chain_tool=no is displayed as \"There is no chain tool\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_bike_chain_tool", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:stand", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=yes with a fixed text, namely 'There is a hook or stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:tools=yes)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:stand=yes is displayed as \"There is a hook or stand\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_bike_stand", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:stand", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=no with a fixed text, namely 'There is no hook or stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:tools=yes)", - "value": "no" + "value": "no", + "description": "service:bicycle:stand=no is displayed as \"There is no hook or stand\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_bike_stand", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'valves' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `valves` are shown with \"This pump supports the following valves: {valves}\" and can be updated. The question is \"What valves are supported?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_valves", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=sclaverand with a fixed text, namely 'Sclaverand/Presta (narrow-width bike tires)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "sclaverand" + "value": "sclaverand", + "description": "valves=sclaverand is displayed as \"Sclaverand/Presta (narrow-width bike tires)\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_valves", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=dunlop with a fixed text, namely 'Dunlop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "dunlop" + "value": "dunlop", + "description": "valves=dunlop is displayed as \"Dunlop\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_valves", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=schrader with a fixed text, namely 'Schrader (cars and mountainbikes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "schrader" + "value": "schrader", + "description": "valves=schrader is displayed as \"Schrader (cars and mountainbikes)\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_valves", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manual", - "description": "Layer 'Bicycle pump and repair' shows manual=yes with a fixed text, namely 'Manual pump' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump=yes)", - "value": "yes" + "value": "yes", + "description": "manual=yes is displayed as \"Manual pump\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_electrical_pump", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manual", - "description": "Layer 'Bicycle pump and repair' shows manual=no with a fixed text, namely 'Electrical pump' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump=yes)", - "value": "no" + "value": "no", + "description": "manual=no is displayed as \"Electrical pump\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_electrical_pump", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manometer", - "description": "Layer 'Bicycle pump and repair' shows manometer=yes with a fixed text, namely 'There is a manometer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump=yes)", - "value": "yes" + "value": "yes", + "description": "manometer=yes is displayed as \"There is a manometer\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_manometer", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manometer", - "description": "Layer 'Bicycle pump and repair' shows manometer=no with a fixed text, namely 'There is no manometer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump=yes)", - "value": "no" + "value": "no", + "description": "manometer=no is displayed as \"There is no manometer\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_manometer", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manometer", - "description": "Layer 'Bicycle pump and repair' shows manometer=broken with a fixed text, namely 'There is manometer but it is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump=yes)", - "value": "broken" + "value": "broken", + "description": "manometer=broken is displayed as \"There is manometer but it is broken\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_manometer", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "level", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Circular economy') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Bicycle pump and repair, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#single_level", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "location", - "description": "Layer 'Bicycle pump and repair' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Circular economy') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Bicycle pump and repair, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#single_level", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "level", - "description": "Layer 'Bicycle pump and repair' 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 'Circular economy') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Bicycle pump and repair, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#single_level", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "level", - "description": "Layer 'Bicycle pump and repair' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Bicycle pump and repair, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#single_level", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "level", - "description": "Layer 'Bicycle pump and repair' 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 'Circular economy') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Bicycle pump and repair, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#single_level", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "level", - "description": "Layer 'Bicycle pump and repair' 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 'Circular economy') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Bicycle pump and repair, Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#single_level", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "amenity", - "description": "The MapComplete theme Circular economy has a layer Tool libraries showing features with this tag", - "value": "tool_library" - }, - { - "key": "id", - "description": "Layer 'Tool libraries' 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 'Circular economy') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Tool libraries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Tool libraries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Tool libraries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Tool libraries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Tool libraries allows to upload images and adds them under the 'panoramax'-tag (and 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": "phone", - "description": "Layer 'Tool libraries' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:phone", - "description": "Layer 'Tool libraries' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "email", - "description": "Layer 'Tool libraries' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:email", - "description": "Layer 'Tool libraries' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "operator:email", - "description": "Layer 'Tool libraries' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "website", - "description": "Layer 'Tool libraries' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:website", - "description": "Layer 'Tool libraries' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Circular economy')" + "value": "tool_library", + "description": "Features with this tag are displayed by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "contact:facebook", - "description": "Layer 'Tool libraries' shows and asks freeform values for key 'contact:facebook' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `contact:facebook` are shown with \"{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
\" and can be updated. The question is \"What is the facebook page of of {title()}?\" by layers Tool libraries, Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#facebook", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "opening_hours", - "description": "Layer 'Tool libraries' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Circular economy')" + "value": "\"by appointment\"", + "description": "opening_hours=\"by appointment\" is displayed as \"Only by appointment\" by layers Tool libraries, Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "opening_hours", - "description": "Layer 'Tool libraries' shows opening_hours=\"by appointment\" with a fixed text, namely 'Only by appointment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "\"by appointment\"" - }, - { - "key": "opening_hours", - "description": "Layer 'Tool libraries' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "opening_hours", - "description": "Layer 'Tool libraries' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Circular economy')", - "value": "closed" + "description": "opening_hours~^(\"by appointment\"|by appointment)$ is displayed as \"Only by appointment\" by layers Tool libraries, Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "membership", - "description": "Layer 'Tool libraries' shows membership=no with a fixed text, namely 'No membership is required to borrow tools here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "membership=no is displayed as \"No membership is required to borrow tools here\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#membership", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "membership", - "description": "Layer 'Tool libraries' shows membership=required with a fixed text, namely 'A membership is required to use this tool library' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "required" + "value": "required", + "description": "membership=required is displayed as \"A membership is required to use this tool library\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#membership", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "membership", - "description": "Layer 'Tool libraries' shows membership=optional with a fixed text, namely 'A membership is possible but not required to use this tool library' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "optional" + "value": "optional", + "description": "membership=optional is displayed as \"A membership is possible but not required to use this tool library\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#membership", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "charge:membership", - "description": "Layer 'Tool libraries' shows and asks freeform values for key 'charge:membership' (in the mapcomplete.org theme 'Circular economy') (This is only shown if membership=required)" + "description": "Values of `charge:membership` are shown with \"A membership costs {charge:membership}\" and can be updated. The question is \"How much does a membership cost?\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#membership_charge", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "fee", - "description": "Layer 'Tool libraries' shows fee=no & membership=required with a fixed text, namely 'Borrowing tools is free (if one has a membership)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "fee=no & membership=required is displayed as \"Borrowing tools is free (if one has a membership)\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#fee", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "membership", - "description": "Layer 'Tool libraries' shows fee=no & membership=required with a fixed text, namely 'Borrowing tools is free (if one has a membership)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "required" + "value": "required", + "description": "fee=no & membership=required is displayed as \"Borrowing tools is free (if one has a membership)\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#fee", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "fee", - "description": "Layer 'Tool libraries' shows fee=no with a fixed text, namely 'Borrowing tools is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Borrowing tools is free\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#fee", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "fee", - "description": "Layer 'Tool libraries' shows fee=yes with a fixed text, namely 'A fee is asked when borrowing tools' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"A fee is asked when borrowing tools\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#fee", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "fee", - "description": "Layer 'Tool libraries' shows fee=donation with a fixed text, namely 'A donation can be given when borrowing tools' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "donation" + "value": "donation", + "description": "fee=donation is displayed as \"A donation can be given when borrowing tools\" by layer Tool libraries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tool_library.md#fee", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "repair", - "description": "The MapComplete theme Circular economy has a layer Repair cafés and assisted repair workshops showing features with this tag", - "value": "assisted_self_service" - }, - { - "key": "id", - "description": "Layer 'Repair cafés and assisted repair workshops' 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 'Circular economy') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "assisted_self_service", + "description": "Features with this tag are displayed by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md", + "icon_url": "gear" }, { "key": "name", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "opening_hours", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "opening_hours", - "description": "Layer 'Repair cafés and assisted repair workshops' shows opening_hours=\"by appointment\" with a fixed text, namely 'Only by appointment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "\"by appointment\"" - }, - { - "key": "opening_hours", - "description": "Layer 'Repair cafés and assisted repair workshops' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "opening_hours", - "description": "Layer 'Repair cafés and assisted repair workshops' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Circular economy')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:phone", - "description": "Layer 'Repair cafés and assisted repair workshops' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "email", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:email", - "description": "Layer 'Repair cafés and assisted repair workshops' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "operator:email", - "description": "Layer 'Repair cafés and assisted repair workshops' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "website", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:website", - "description": "Layer 'Repair cafés and assisted repair workshops' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `name` are shown with \"This workshop is called {name}\" and can be updated. The question is \"What is the name of this repair workshop?\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md#name", + "icon_url": "gear" }, { "key": "contact:mastodon", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:facebook", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'contact:facebook' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `contact:mastodon` are shown with \"{fediverse_link(contact:mastodon)}\" and can be updated. The question is \"What is the Mastodon-handle of {title()}?\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md#mastodon", + "icon_url": "./assets/svg/mastodon.svg" }, { "key": "service:mobile_phone:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:mobile_phone:repair=yes with a fixed text, namely 'Mobile phones are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:mobile_phone:repair=yes is displayed as \"Mobile phones are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md#item_repair", + "icon_url": "gear" }, { "key": "service:computer:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:computer:repair=yes with a fixed text, namely 'Computers are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:computer:repair=yes is displayed as \"Computers are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md#item_repair", + "icon_url": "gear" }, { "key": "service:bicycle:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:bicycle:repair=yes with a fixed text, namely 'Bicycles are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"Bicycles are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md#item_repair", + "icon_url": "gear" }, { "key": "service:electronics:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:electronics:repair=yes with a fixed text, namely 'Electronic devices are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:electronics:repair=yes is displayed as \"Electronic devices are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md#item_repair", + "icon_url": "./assets/layers/recycling/small_electrical_appliances.svg" }, { "key": "service:furniture:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:furniture:repair=yes with a fixed text, namely 'Furniture is repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:furniture:repair=yes is displayed as \"Furniture is repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md#item_repair", + "icon_url": "./assets/layers/recycling/furniture.svg" }, { "key": "service:clothes:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:clothes:repair=yes with a fixed text, namely 'Clothes are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "service:clothes:repair=yes is displayed as \"Clothes are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assisted_repair.md#item_repair", + "icon_url": "./assets/layers/recycling/clothes.svg" }, { "key": "shop", - "description": "The MapComplete theme Circular economy has a layer Second hand shops showing features with this tag", - "value": "second_hand" + "value": "second_hand", + "description": "Features with this tag are displayed by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "The MapComplete theme Circular economy has a layer Second hand shops showing features with this tag", - "value": "charity" + "value": "charity", + "description": "Features with this tag are displayed by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "The MapComplete theme Circular economy has a layer Second hand shops showing features with this tag" + "description": "Features with this tag are displayed by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "The MapComplete theme Circular economy has a layer Second hand shops showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "The MapComplete theme Circular economy has a layer Second hand shops showing features with this tag", - "value": "only" - }, - { - "key": "id", - "description": "Layer 'Second hand shops' 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 'Circular economy') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Second hand shops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Second hand shops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Second hand shops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Second hand shops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Second hand shops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "only", + "description": "Features with this tag are displayed by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Second hand shops' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Second hand shops' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Circular economy')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Second hand shops' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Second hand shops' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Second hand shops' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Second hand shops' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "opening_hours", - "description": "Layer 'Second hand shops' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Circular economy')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:website", - "description": "Layer 'Second hand shops' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "email", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:email", - "description": "Layer 'Second hand shops' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "operator:email", - "description": "Layer 'Second hand shops' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "phone", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Circular economy')" - }, - { - "key": "contact:phone", - "description": "Layer 'Second hand shops' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Circular economy')" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "payment:cash", - "description": "Layer 'Second hand shops' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Second hand shops' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Second hand shops' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" - }, - { - "key": "level", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Circular economy') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Second hand shops' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Circular economy') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Second hand shops' 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 'Circular economy') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Second hand shops' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Second hand shops' 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 'Circular economy') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Second hand shops' 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 'Circular economy') (This is only shown if repeat_on=)", - "value": "-1" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "service:print:A4", - "description": "Layer 'Second hand shops' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Second hand shops' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Second hand shops' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Second hand shops' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Second hand shops' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Second hand shops' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Second hand shops' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Second hand shops' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Second hand shops' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Second hand shops' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Second hand shops' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Second hand shops' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Second hand shops' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Second hand shops' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Second hand shops' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Second hand shops' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Second hand shops' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Second hand shops' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Second hand shops' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Second hand shops' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Second hand shops' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Second hand shops' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Second hand shops' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Second hand shops' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Second hand shops' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Circular economy') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Circular economy') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Circular economy') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Circular economy') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Circular economy') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Circular economy') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Circular economy') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Second hand shops' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Second hand shops' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Second hand shops' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Second hand shops' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Second hand shops' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Second hand shops' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Second hand shops' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Second hand shops' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Second hand shops' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Circular economy') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Second hand shops' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Second hand shops' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Circular economy') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Second hand shops' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Circular economy') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Second hand shops' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Second hand shops' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Second hand shops' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Second hand shops' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Second hand shops' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Second hand shops' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Second hand shops' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Second hand shops' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Second hand shops' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Circular economy') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Second hand shops' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Second hand shops' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Second hand shops' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Second hand shops' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Second hand shops' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Second hand shops' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Second hand shops' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Second hand shops' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Second hand shops' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Second hand shops' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Second hand shops' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Second hand shops' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Second hand shops' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Second hand shops' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Second hand shops' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Second hand shops' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "dog", - "description": "Layer 'Second hand shops' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Second hand shops' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Second hand shops' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Second hand shops' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Second hand shops' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Circular economy')", - "value": "outside" - }, - { - "key": "description", - "description": "Layer 'Second hand shops' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Circular economy')" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_climbing.json b/Docs/TagInfo/mapcomplete_climbing.json index e37d2a451e..0774b37270 100644 --- a/Docs/TagInfo/mapcomplete_climbing.json +++ b/Docs/TagInfo/mapcomplete_climbing.json @@ -7,2768 +7,3383 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/climbing/climbing_icon.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "club", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing club showing features with this tag", - "value": "climbing" + "value": "climbing", + "description": "Features with this tag are displayed by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "sport", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing club showing features with this tag", - "value": "climbing" + "value": "climbing", + "description": "Features with this tag are displayed by layers Climbing club, Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "office", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing club showing features with this tag" + "description": "Features with this tag are displayed by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "club", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing club showing features with this tag" + "description": "Features with this tag are displayed by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "id", - "description": "Layer 'Climbing club' 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 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Climbing club, Climbing gyms, Climbing routes, Climbing opportunities, Climbing opportunities?, Shop, Toilets, Drinking water, Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "name", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this climbing club or NGO?\" by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#climbing_club_name", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "website", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Climbing club, Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Climbing club' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Climbing club, Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Climbing club, Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Climbing club' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Climbing club, Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Climbing club' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Climbing club, Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Climbing club, Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Climbing club' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Climbing club, Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "opening_hours", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Climbing club, Climbing gyms, Shop, Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#opening_hours", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "opening_hours", - "description": "Layer 'Climbing club' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Climbing club, Climbing gyms, Shop, Toilets, Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#opening_hours", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "access", - "description": "Layer 'Climbing club' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' 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~.+ | _embedding_feature:access=)", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Publicly accessible to anyone\" by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#access", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "access", - "description": "Layer 'Climbing club' shows access=permit with a fixed text, namely 'You need a permit to access here' 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~.+ | _embedding_feature:access=)", - "value": "permit" + "value": "permit", + "description": "access=permit is displayed as \"You need a permit to access here\" by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#access", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "access", - "description": "Layer 'Climbing club' shows access=customers with a fixed text, namely 'Only customers' 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~.+ | _embedding_feature:access=)", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only customers\" by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#access", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "access", - "description": "Layer 'Climbing club' shows access=members with a fixed text, namely 'Only club members' 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~.+ | _embedding_feature:access=)", - "value": "members" + "value": "members", + "description": "access=members is displayed as \"Only club members\" by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#access", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "access", - "description": "Layer 'Climbing club' shows access=no with a fixed text, namely 'Not accessible' 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~.+ | _embedding_feature:access=)", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible\" by layers Climbing club, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#access", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "access:description", - "description": "Layer 'Climbing club' shows values with key 'access:description' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "sport", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing gyms showing features with this tag", - "value": "climbing" + "description": "Values of `access:description` are shown with \"{access:description}\" by layer Climbing club", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_club.md#Access_description__without__embedding_feature_access_description_", + "icon_url": "./assets/themes/climbing/club.svg" }, { "key": "leisure", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing gyms showing features with this tag", - "value": "sports_centre" + "value": "sports_centre", + "description": "Features with this tag are displayed by layers Climbing gyms, Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "leisure", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing gyms showing features with this tag", - "value": "sports_hall" - }, - { - "key": "id", - "description": "Layer 'Climbing gyms' 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 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "sports_hall", + "description": "Features with this tag are displayed by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "image", - "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Climbing gyms, Climbing routes, Climbing opportunities, Shop, Toilets, Drinking water, Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#images", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "panoramax", - "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Climbing gyms, Climbing routes, Climbing opportunities, Shop, Toilets, Drinking water, Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#images", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "mapillary", - "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Climbing gyms, Climbing routes, Climbing opportunities, Shop, Toilets, Drinking water, Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#images", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "wikidata", - "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Climbing gyms, Climbing routes, Climbing opportunities, Shop, Toilets, Drinking water, Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#images", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "wikipedia", - "description": "The layer 'Climbing gyms allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Climbing gyms, Climbing routes, Climbing opportunities, Shop, Toilets, Drinking water, Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#images", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "name", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "website", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "contact:website", - "description": "Layer 'Climbing gyms' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "phone", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "contact:phone", - "description": "Layer 'Climbing gyms' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "email", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "contact:email", - "description": "Layer 'Climbing gyms' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "operator:email", - "description": "Layer 'Climbing gyms' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this climbing gym?\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#name", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "charge", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `charge` are shown with \"A fee of {charge} should be paid for climbing here\" and can be updated. The question is \"Is a fee required to climb here?\" by layers Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#fee", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "fee", - "description": "Layer 'Climbing gyms' shows fee=no with a fixed text, namely 'Climbing here is free of charge' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Climbing here is free of charge\" by layers Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#fee", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "fee", - "description": "Layer 'Climbing gyms' shows fee=yes & charge= with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "fee=yes & charge= is displayed as \"Paying a fee is required to climb here\" by layers Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#fee", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "charge", - "description": "Layer 'Climbing gyms' shows fee=yes & charge= with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=yes & charge= is displayed as \"Paying a fee is required to climb here\" by layers Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#fee", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "payment:cash", - "description": "Layer 'Climbing gyms' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Climbing gyms, Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Climbing gyms' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Climbing gyms, Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Climbing gyms' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" - }, - { - "key": "opening_hours", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "opening_hours", - "description": "Layer 'Climbing gyms' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "closed" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Climbing gyms, Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "climbing:boulder", - "description": "Layer 'Climbing gyms' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "climbing:boulder=yes is displayed as \"Bouldering is possible here\" by layers Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#bouldering", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:boulder", - "description": "Layer 'Climbing gyms' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "climbing:boulder=no is displayed as \"Bouldering is not possible here\" by layers Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#bouldering", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:boulder", - "description": "Layer 'Climbing gyms' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, although there are only a few problems' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "limited" + "value": "limited", + "description": "climbing:boulder=limited is displayed as \"Bouldering is possible, although there are only a few problems\" by layers Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#bouldering", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:boulder", - "description": "Layer 'Climbing gyms' shows climbing:boulder~.+ with a fixed text, namely 'There are {climbing:boulder} boulder problems' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "climbing:boulder~.+ is displayed as \"There are {climbing:boulder} boulder problems\" by layers Climbing gyms, Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#bouldering", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:sport", - "description": "Layer 'Climbing gyms' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "climbing:sport=yes is displayed as \"Sport climbing is possible here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#sportclimbing", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:sport", - "description": "Layer 'Climbing gyms' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "climbing:sport=no is displayed as \"Sport climbing is not possible here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#sportclimbing", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:sport", - "description": "Layer 'Climbing gyms' shows climbing:sport~.+ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "climbing:sport~.+ is displayed as \"There are {climbing:sport} sport climbing routes\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#sportclimbing", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "climbing:toprope=yes is displayed as \"Toprope climbing is possible here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#toprope", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "climbing:toprope=no is displayed as \"Toprope climbing is not possible here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#toprope", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope~.+ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "climbing:toprope~.+ is displayed as \"There are {climbing:toprope} toprope routes\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#toprope", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_shoes:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_shoes:rental=yes & service:climbing_shoes:rental:fee=no with a fixed text, namely 'Climbing shoes can be borrowed for free here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "service:climbing_shoes:rental=yes & service:climbing_shoes:rental:fee=no is displayed as \"Climbing shoes can be borrowed for free here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shoe_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_shoes:rental:fee", - "description": "Layer 'Climbing gyms' shows service:climbing_shoes:rental=yes & service:climbing_shoes:rental:fee=no with a fixed text, namely 'Climbing shoes can be borrowed for free here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "service:climbing_shoes:rental=yes & service:climbing_shoes:rental:fee=no is displayed as \"Climbing shoes can be borrowed for free here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shoe_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_shoes:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_shoes:rental=yes & service:climbing_shoes:rental:charge~.+ with a fixed text, namely 'Climbing shoes can be rented here for {service:climbing_shoes:rental:charge}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "service:climbing_shoes:rental=yes & service:climbing_shoes:rental:charge~.+ is displayed as \"Climbing shoes can be rented here for {service:climbing_shoes:rental:charge}\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shoe_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_shoes:rental:charge", - "description": "Layer 'Climbing gyms' shows service:climbing_shoes:rental=yes & service:climbing_shoes:rental:charge~.+ with a fixed text, namely 'Climbing shoes can be rented here for {service:climbing_shoes:rental:charge}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "service:climbing_shoes:rental=yes & service:climbing_shoes:rental:charge~.+ is displayed as \"Climbing shoes can be rented here for {service:climbing_shoes:rental:charge}\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shoe_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_shoes:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_shoes:rental=yes & service:climbing_shoes:rental:fee=yes with a fixed text, namely 'Climbing shoes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "service:climbing_shoes:rental=yes & service:climbing_shoes:rental:fee=yes is displayed as \"Climbing shoes can be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shoe_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_shoes:rental:fee", - "description": "Layer 'Climbing gyms' shows service:climbing_shoes:rental=yes & service:climbing_shoes:rental:fee=yes with a fixed text, namely 'Climbing shoes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "service:climbing_shoes:rental=yes & service:climbing_shoes:rental:fee=yes is displayed as \"Climbing shoes can be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shoe_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_shoes:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_shoes:rental=no with a fixed text, namely 'Climbing shoes can not be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "service:climbing_shoes:rental=no is displayed as \"Climbing shoes can not be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shoe_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_harness:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_harness:rental=yes & service:climbing_harness:rental:fee=no with a fixed text, namely 'A climbing harness can be borrowed for free here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no) | (climbing:speed~.+ & climbing:speed!=no))", - "value": "yes" + "value": "yes", + "description": "service:climbing_harness:rental=yes & service:climbing_harness:rental:fee=no is displayed as \"A climbing harness can be borrowed for free here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#harness_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_harness:rental:fee", - "description": "Layer 'Climbing gyms' shows service:climbing_harness:rental=yes & service:climbing_harness:rental:fee=no with a fixed text, namely 'A climbing harness can be borrowed for free here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no) | (climbing:speed~.+ & climbing:speed!=no))", - "value": "no" + "value": "no", + "description": "service:climbing_harness:rental=yes & service:climbing_harness:rental:fee=no is displayed as \"A climbing harness can be borrowed for free here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#harness_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_harness:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_harness:rental=yes & service:climbing_harness:rental:charge~.+ with a fixed text, namely 'A climbing harness can be rented here for {service:climbing_harness:rental:charge}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no) | (climbing:speed~.+ & climbing:speed!=no))", - "value": "yes" + "value": "yes", + "description": "service:climbing_harness:rental=yes & service:climbing_harness:rental:charge~.+ is displayed as \"A climbing harness can be rented here for {service:climbing_harness:rental:charge}\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#harness_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_harness:rental:charge", - "description": "Layer 'Climbing gyms' shows service:climbing_harness:rental=yes & service:climbing_harness:rental:charge~.+ with a fixed text, namely 'A climbing harness can be rented here for {service:climbing_harness:rental:charge}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no) | (climbing:speed~.+ & climbing:speed!=no))" + "description": "service:climbing_harness:rental=yes & service:climbing_harness:rental:charge~.+ is displayed as \"A climbing harness can be rented here for {service:climbing_harness:rental:charge}\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#harness_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_harness:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_harness:rental=yes with a fixed text, namely 'A climbing harness can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no) | (climbing:speed~.+ & climbing:speed!=no))", - "value": "yes" + "value": "yes", + "description": "service:climbing_harness:rental=yes is displayed as \"A climbing harness can be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#harness_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_harness:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_harness:rental=no with a fixed text, namely 'A climbing harness can not be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no) | (climbing:speed~.+ & climbing:speed!=no))", - "value": "no" + "value": "no", + "description": "service:climbing_harness:rental=no is displayed as \"A climbing harness can not be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#harness_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:toprope", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:autobelay:toprope' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:toprope~.+ & climbing:toprope!=no)" + "description": "Values of `climbing:autobelay:toprope` are shown with \"There are {climbing:autobelay:toprope} auto belay devices for top roping\" and can be updated. The question is \"Are there auto belays for top roping here?\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_toprope", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:toprope", - "description": "Layer 'Climbing gyms' shows climbing:autobelay:toprope=no with a fixed text, namely 'There are no auto belays for top roping' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:toprope~.+ & climbing:toprope!=no)", - "value": "no" + "value": "no", + "description": "climbing:autobelay:toprope=no is displayed as \"There are no auto belays for top roping\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_toprope", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:toprope", - "description": "Layer 'Climbing gyms' shows climbing:autobelay:toprope=yes with a fixed text, namely 'There are a number of auto belays for top roping' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:toprope~.+ & climbing:toprope!=no)", - "value": "yes" + "value": "yes", + "description": "climbing:autobelay:toprope=yes is displayed as \"There are a number of auto belays for top roping\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_toprope", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:toprope", - "description": "Layer 'Climbing gyms' shows climbing:autobelay:toprope=all with a fixed text, namely 'There is an auto belay for every top rope route but manual belaying is also possible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:toprope~.+ & climbing:toprope!=no)", - "value": "all" + "value": "all", + "description": "climbing:autobelay:toprope=all is displayed as \"There is an auto belay for every top rope route but manual belaying is also possible\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_toprope", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:toprope", - "description": "Layer 'Climbing gyms' shows climbing:autobelay:toprope=only with a fixed text, namely 'Top rope routes can only be climbed on auto belay' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:toprope~.+ & climbing:toprope!=no)", - "value": "only" + "value": "only", + "description": "climbing:autobelay:toprope=only is displayed as \"Top rope routes can only be climbed on auto belay\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_toprope", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:sport", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:autobelay:sport' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport~.+ & climbing:sport!=no)" + "description": "Values of `climbing:autobelay:sport` are shown with \"There are {climbing:autobelay:sport} auto belays for lead climbing\" and can be updated. The question is \"Are there auto belays for lead climbing here?\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_lead", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:sport", - "description": "Layer 'Climbing gyms' shows climbing:autobelay:sport=no with a fixed text, namely 'There are no auto belays for lead climbing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport~.+ & climbing:sport!=no)", - "value": "no" + "value": "no", + "description": "climbing:autobelay:sport=no is displayed as \"There are no auto belays for lead climbing\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_lead", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:sport", - "description": "Layer 'Climbing gyms' shows climbing:autobelay:sport=yes with a fixed text, namely 'There is a number of auto belays for lead climbing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport~.+ & climbing:sport!=no)", - "value": "yes" + "value": "yes", + "description": "climbing:autobelay:sport=yes is displayed as \"There is a number of auto belays for lead climbing\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_lead", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:autobelay:sport", - "description": "Layer 'Climbing gyms' shows climbing:autobelay:sport=all with a fixed text, namely 'There is an auto belay for every lead climbing route' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport~.+ & climbing:sport!=no)", - "value": "all" + "value": "all", + "description": "climbing:autobelay:sport=all is displayed as \"There is an auto belay for every lead climbing route\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#auto_belay_lead", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_belay_device:provided_at_each_rope", - "description": "Layer 'Climbing gyms' shows service:climbing_belay_device:provided_at_each_rope=yes with a fixed text, namely 'Belay devices are provided at each rope' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no))", - "value": "yes" + "value": "yes", + "description": "service:climbing_belay_device:provided_at_each_rope=yes is displayed as \"Belay devices are provided at each rope\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#belay_device_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_belay_device:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_belay_device:rental=yes & service:climbing_belay_device:rental:fee=no with a fixed text, namely 'A belay device can be borrowed for free here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no))", - "value": "yes" + "value": "yes", + "description": "service:climbing_belay_device:rental=yes & service:climbing_belay_device:rental:fee=no is displayed as \"A belay device can be borrowed for free here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#belay_device_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_belay_device:rental:fee", - "description": "Layer 'Climbing gyms' shows service:climbing_belay_device:rental=yes & service:climbing_belay_device:rental:fee=no with a fixed text, namely 'A belay device can be borrowed for free here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no))", - "value": "no" + "value": "no", + "description": "service:climbing_belay_device:rental=yes & service:climbing_belay_device:rental:fee=no is displayed as \"A belay device can be borrowed for free here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#belay_device_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_belay_device:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_belay_device:rental=yes & service:climbing_belay_device:rental:charge~.+ with a fixed text, namely 'A belay device can be rented here for {service:climbing_belay_device:rental:charge}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no))", - "value": "yes" + "value": "yes", + "description": "service:climbing_belay_device:rental=yes & service:climbing_belay_device:rental:charge~.+ is displayed as \"A belay device can be rented here for {service:climbing_belay_device:rental:charge}\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#belay_device_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_belay_device:rental:charge", - "description": "Layer 'Climbing gyms' shows service:climbing_belay_device:rental=yes & service:climbing_belay_device:rental:charge~.+ with a fixed text, namely 'A belay device can be rented here for {service:climbing_belay_device:rental:charge}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no))" + "description": "service:climbing_belay_device:rental=yes & service:climbing_belay_device:rental:charge~.+ is displayed as \"A belay device can be rented here for {service:climbing_belay_device:rental:charge}\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#belay_device_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_belay_device:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_belay_device:rental=yes with a fixed text, namely 'A belay device can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no))", - "value": "yes" + "value": "yes", + "description": "service:climbing_belay_device:rental=yes is displayed as \"A belay device can be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#belay_device_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_belay_device:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_belay_device:rental=no with a fixed text, namely 'A belay device can not be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (climbing:sport~.+ & climbing:sport!=no) | (climbing:toprope~.+ & climbing:toprope!=no))", - "value": "no" + "value": "no", + "description": "service:climbing_belay_device:rental=no is displayed as \"A belay device can not be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#belay_device_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_rope:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_rope:rental=yes & service:climbing_rope:rental:fee=no with a fixed text, namely 'A climbing rope can be borrowed for free here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport!=no)", - "value": "yes" + "value": "yes", + "description": "service:climbing_rope:rental=yes & service:climbing_rope:rental:fee=no is displayed as \"A climbing rope can be borrowed for free here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#rope_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_rope:rental:fee", - "description": "Layer 'Climbing gyms' shows service:climbing_rope:rental=yes & service:climbing_rope:rental:fee=no with a fixed text, namely 'A climbing rope can be borrowed for free here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport!=no)", - "value": "no" + "value": "no", + "description": "service:climbing_rope:rental=yes & service:climbing_rope:rental:fee=no is displayed as \"A climbing rope can be borrowed for free here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#rope_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_rope:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_rope:rental=yes & service:climbing_rope:rental:charge~.+ with a fixed text, namely 'A climbing rope can be rented here for {service:climbing_rope:rental:charge}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport!=no)", - "value": "yes" + "value": "yes", + "description": "service:climbing_rope:rental=yes & service:climbing_rope:rental:charge~.+ is displayed as \"A climbing rope can be rented here for {service:climbing_rope:rental:charge}\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#rope_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_rope:rental:charge", - "description": "Layer 'Climbing gyms' shows service:climbing_rope:rental=yes & service:climbing_rope:rental:charge~.+ with a fixed text, namely 'A climbing rope can be rented here for {service:climbing_rope:rental:charge}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport!=no)" + "description": "service:climbing_rope:rental=yes & service:climbing_rope:rental:charge~.+ is displayed as \"A climbing rope can be rented here for {service:climbing_rope:rental:charge}\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#rope_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_rope:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_rope:rental=yes with a fixed text, namely 'A climbing rope can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport!=no)", - "value": "yes" + "value": "yes", + "description": "service:climbing_rope:rental=yes is displayed as \"A climbing rope can be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#rope_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "service:climbing_rope:rental", - "description": "Layer 'Climbing gyms' shows service:climbing_rope:rental=no with a fixed text, namely 'A climbing rope can not be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport!=no)", - "value": "no" + "value": "no", + "description": "service:climbing_rope:rental=no is displayed as \"A climbing rope can not be rented here\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#rope_rental", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:length", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:length' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport!=no | climbing:toprope!=no)" + "description": "Values of `climbing:length` are shown with \"The routes are {canonical(climbing:length)} long on average\" and can be updated. The question is \"What is the (average) length of the routes in meters?\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#average_length", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:grade:french:min", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:grade:french:min' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `climbing:grade:french:min` are shown with \"The lowest grade is {climbing:grade:french:min} according to the french/belgian system\" and can be updated. The question is \"What is the grade of the easiest route here, according to the french classification system?\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#min_difficulty", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:grade:french:max", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:grade:french:max' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing!~^(route)$ & office= & club= & (climbing:sport=yes | sport=climbing))" + "description": "Values of `climbing:grade:french:max` are shown with \"The highest grade is {climbing:grade:french:max} according to the french/belgian system\" and can be updated. The question is \"What is the highest grade route here, according to the french classification system?\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#max_difficulty", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:bolts:max", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:bolts:max' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing:sport!=no)" + "description": "Values of `climbing:bolts:max` are shown with \"The sport climbing routes here have at most {climbing:bolts:max} bolts.
This is without belay stations and indicates how much quickdraws a climber needs.
\" and can be updated. The question is \"How many bolts do routes in {title()} have at most?\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#max_bolts", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:speed", - "description": "Layer 'Climbing gyms' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "climbing:speed=yes is displayed as \"There is a speed climbing wall\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#Speed_climbing_", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:speed", - "description": "Layer 'Climbing gyms' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "climbing:speed=no is displayed as \"There is no speed climbing wall\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#Speed_climbing_", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing:speed", - "description": "Layer 'Climbing gyms' shows climbing:speed~.+ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "climbing:speed~.+ is displayed as \"There are {climbing:speed} speed climbing walls\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#Speed_climbing_", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "shower", - "description": "Layer 'Climbing gyms' shows shower=hot with a fixed text, namely 'This facility does have showers with warm water' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "hot" + "value": "hot", + "description": "shower=hot is displayed as \"This facility does have showers with warm water\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shower", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "shower", - "description": "Layer 'Climbing gyms' shows shower=cold with a fixed text, namely 'This facility does have showers, but the water is not heated' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "cold" + "value": "cold", + "description": "shower=cold is displayed as \"This facility does have showers, but the water is not heated\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shower", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "shower", - "description": "Layer 'Climbing gyms' shows shower=yes with a fixed text, namely 'This facility does have showers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "shower=yes is displayed as \"This facility does have showers\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shower", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "shower", - "description": "Layer 'Climbing gyms' shows shower=no with a fixed text, namely 'This facility does not offer a shower' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "shower=no is displayed as \"This facility does not offer a shower\" by layer Climbing gyms", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#shower", + "icon_url": "invalid;./assets/layers/shower/shower.svg" }, { "key": "internet_access", - "description": "Layer 'Climbing gyms' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Climbing gyms' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Climbing gyms' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "internet_access", - "description": "Layer 'Climbing gyms' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Climbing gyms' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "internet_access", - "description": "Layer 'Climbing gyms' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Climbing gyms' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet_fee", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Climbing gyms' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet_fee", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Climbing gyms' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet_fee", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet_ssid", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Climbing gyms' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layers Climbing gyms, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_gym.md#internet_ssid", + "icon_url": "./assets/themes/climbing/climbing_gym.svg" }, { "key": "climbing", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing routes showing features with this tag", - "value": "route" - }, - { - "key": "id", - "description": "Layer 'Climbing routes' 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 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Climbing routes allows to upload images and adds them under the 'panoramax'-tag (and 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 'Climbing routes allows to upload images and adds them under the 'panoramax'-tag (and 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 'Climbing routes allows to upload images and adds them under the 'panoramax'-tag (and 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 'Climbing routes allows to upload images and adds them under the 'panoramax'-tag (and 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 'Climbing routes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "route", + "description": "Features with this tag are displayed by layer Climbing routes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "name", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this climbing route?\" by layer Climbing routes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md#Name", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "noname", - "description": "Layer 'Climbing routes' shows noname=yes & name= with a fixed text, namely 'This climbing route doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "noname=yes & name= is displayed as \"This climbing route doesn't have a name\" by layer Climbing routes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md#Name", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "name", - "description": "Layer 'Climbing routes' shows noname=yes & name= with a fixed text, namely 'This climbing route doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key name.", - "value": "" + "description": "noname=yes & name= is displayed as \"This climbing route doesn't have a name\" by layer Climbing routes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md#Name", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "climbing:length", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:length' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `climbing:length` are shown with \"This route is {canonical(climbing:length)} long\" and can be updated. The question is \"How long is this climbing route (in meters)?\" by layer Climbing routes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md#Length", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "climbing:grade:french", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `climbing:grade:french` are shown with \"The grade is {climbing:grade:french} according to the french/belgian system\" and can be updated. The question is \"What is the grade of this climbing route according to the french/belgian system?\" by layer Climbing routes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md#Difficulty", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "climbing:bolts", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:bolts' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `climbing:bolts` are shown with \"This route has {climbing:bolts} bolts.
This is without belay stations and indicates how much quickdraws a climber needs.
\" and can be updated. The question is \"How many bolts does this route have before reaching the anchor?\" by layer Climbing routes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md#bolts", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "climbing:bolted", - "description": "Layer 'Climbing routes' shows climbing:bolted=no with a fixed text, namely 'This route is not bolted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "climbing:bolted=no is displayed as \"This route is not bolted\" by layer Climbing routes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md#bolts", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "description", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "sport", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing opportunities showing features with this tag", - "value": "climbing" - }, - { - "key": "id", - "description": "Layer 'Climbing opportunities' 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 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Climbing opportunities allows to upload images and adds them under the 'panoramax'-tag (and 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 'Climbing opportunities allows to upload images and adds them under the 'panoramax'-tag (and 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 'Climbing opportunities allows to upload images and adds them under the 'panoramax'-tag (and 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 'Climbing opportunities allows to upload images and adds them under the 'panoramax'-tag (and 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 'Climbing opportunities allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layers Climbing routes, Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_route.md#description", + "icon_url": "./assets/themes/climbing/climbing_route.svg" }, { "key": "name", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this climbing opportunity?\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#name", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "noname", - "description": "Layer 'Climbing opportunities' shows noname=yes & name= with a fixed text, namely 'This climbing opportunity doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "noname=yes & name= is displayed as \"This climbing opportunity doesn't have a name\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#name", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "name", - "description": "Layer 'Climbing opportunities' shows noname=yes & name= with a fixed text, namely 'This climbing opportunity doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key name.", - "value": "" + "description": "noname=yes & name= is displayed as \"This climbing opportunity doesn't have a name\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#name", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "climbing", - "description": "Layer 'Climbing opportunities' shows climbing=boulder with a fixed text, namely 'A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "boulder" + "value": "boulder", + "description": "climbing=boulder is displayed as \"A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#Type", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "climbing", - "description": "Layer 'Climbing opportunities' shows climbing=crag with a fixed text, namely 'A climbing crag - a single rock or cliff with at least a few climbing routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "crag" + "value": "crag", + "description": "climbing=crag is displayed as \"A climbing crag - a single rock or cliff with at least a few climbing routes\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#Type", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "climbing", - "description": "Layer 'Climbing opportunities' shows climbing=area with a fixed text, namely 'A climbing area with one or more climbing crags and/or boulders' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "area" + "value": "area", + "description": "climbing=area is displayed as \"A climbing area with one or more climbing crags and/or boulders\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#Type", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "rock", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'rock' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing=crag | natural=cliff | natural=bare_rock)" + "description": "Values of `rock` are shown with \"The rock type is {rock}\" and can be updated. The question is \"What is the rock type here?\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#Rock_type__crag_rock_cliff_only_", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "rock", - "description": "Layer 'Climbing opportunities' shows rock=limestone with a fixed text, namely 'Limestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if climbing=crag | natural=cliff | natural=bare_rock)", - "value": "limestone" + "value": "limestone", + "description": "rock=limestone is displayed as \"Limestone\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#Rock_type__crag_rock_cliff_only_", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "url", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'url' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if leisure!~^(sports_centre)$ & sport=climbing & office= & club=)" - }, - { - "key": "charge", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "fee", - "description": "Layer 'Climbing opportunities' shows fee=no with a fixed text, namely 'Climbing here is free of charge' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" - }, - { - "key": "fee", - "description": "Layer 'Climbing opportunities' shows fee=yes & charge= with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" - }, - { - "key": "charge", - "description": "Layer 'Climbing opportunities' shows fee=yes & charge= with a fixed text, namely 'Paying a fee is required to climb here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key charge.", - "value": "" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, although there are only a few problems' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder~.+ with a fixed text, namely 'There are {climbing:boulder} boulder problems' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "leisure", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing opportunities? showing features with this tag", - "value": "sports_centre" + "description": "Values of `url` are shown with \"{url}\" and can be updated. The question is \"Is there a (unofficial) website with more informations (e.g. topos)?\" by layer Climbing opportunities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_area.md#website", + "icon_url": "./assets/themes/climbing/climbing_no_rope.svg" }, { "key": "barrier", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing opportunities? showing features with this tag", - "value": "wall" + "value": "wall", + "description": "Features with this tag are displayed by layer Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_opportunity.md", + "icon_url": "./assets/themes/climbing/climbing_unknown.svg" }, { "key": "barrier", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing opportunities? showing features with this tag", - "value": "retaining_wall" + "value": "retaining_wall", + "description": "Features with this tag are displayed by layer Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_opportunity.md", + "icon_url": "./assets/themes/climbing/climbing_unknown.svg" }, { "key": "natural", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing opportunities? showing features with this tag", - "value": "cliff" + "value": "cliff", + "description": "Features with this tag are displayed by layer Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_opportunity.md", + "icon_url": "./assets/themes/climbing/climbing_unknown.svg" }, { "key": "natural", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing opportunities? showing features with this tag", - "value": "rock" + "value": "rock", + "description": "Features with this tag are displayed by layer Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_opportunity.md", + "icon_url": "./assets/themes/climbing/climbing_unknown.svg" }, { "key": "natural", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing opportunities? showing features with this tag", - "value": "stone" + "value": "stone", + "description": "Features with this tag are displayed by layer Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_opportunity.md", + "icon_url": "./assets/themes/climbing/climbing_unknown.svg" }, { "key": "climbing", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Climbing opportunities? showing features with this tag", - "value": "" - }, - { - "key": "id", - "description": "Layer 'Climbing opportunities?' 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 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "Features with this tag are displayed by layer Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_opportunity.md", + "icon_url": "./assets/themes/climbing/climbing_unknown.svg" }, { "key": "sport", - "description": "Layer 'Climbing opportunities?' shows sport=climbing with a fixed text, namely 'Climbing is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "climbing" + "value": "climbing", + "description": "sport=climbing is displayed as \"Climbing is possible here\" by layer Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_opportunity.md#climbing_possible", + "icon_url": "./assets/themes/climbing/climbing_unknown.svg" }, { "key": "climbing", - "description": "Layer 'Climbing opportunities?' shows climbing=no with a fixed text, namely 'Climbing is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "climbing=no is displayed as \"Climbing is not possible here\" by layer Climbing opportunities?", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/climbing_opportunity.md#climbing_possible", + "icon_url": "./assets/themes/climbing/climbing_unknown.svg" }, { "key": "service:climbing_shoes:repair", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Shop showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Shop showing features with this tag", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Shop showing features with this tag", - "value": "shoemaker" + "value": "shoemaker", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:climbing_shoes:repair", - "description": "Layer 'Shop' shows service:climbing_shoes:repair=yes with a fixed text, namely 'This shop repairs climbing shoes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "service:climbing_shoes:repair=yes is displayed as \"This shop repairs climbing shoes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#repairs_climbing_shoes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:climbing_shoes:repair", - "description": "Layer 'Shop' shows service:climbing_shoes:repair=no with a fixed text, namely 'This shop does not repair climbing shoes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" - }, - { - "key": "id", - "description": "Layer 'Shop' 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 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "no", + "description": "service:climbing_shoes:repair=no is displayed as \"This shop does not repair climbing shoes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#repairs_climbing_shoes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "contact:website", - "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "email", - "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "contact:email", - "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "operator:email", - "description": "Layer 'Shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "contact:phone", - "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "payment:cash", - "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "location", - "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "outside" - }, - { - "key": "description", - "description": "Layer 'Shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "amenity", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Toilets showing features with this tag", - "value": "toilets" - }, - { - "key": "id", - "description": "Layer 'Toilets' 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 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Climbing gyms, clubs and spots') (This is only shown if repeat_on=)", - "value": "-1" + "value": "toilets", + "description": "Features with this tag are displayed by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Are these toilets publicly accessible?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only access to customers\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "key", + "description": "access=key is displayed as \"Accessible, but one has to ask a key to enter\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "key" - }, - { - "key": "access", - "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "fee", - "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' 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!=no)", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"These are paid toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "fee", - "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if access!=no)", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layers Toilets, Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "charge", - "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fee=yes)" - }, - { - "key": "payment:cash", - "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Toilets' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fee=yes)", - "value": "yes" + "description": "Values of `charge` are shown with \"The fee is {charge}\" and can be updated. The question is \"How much does one have to pay for these toilets?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_charge", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "payment:coins", - "description": "Layer 'Toilets' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Toilets' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Toilets' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Toilets' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if access!=no)" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When are these toilets opened?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if access!=no)", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if access!=no)", - "value": "closed" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layers Toilets, Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"No wheelchair access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "door:width", - "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (wheelchair=yes | wheelchair=designated))" + "description": "Values of `door:width` are shown with \"The door to the wheelchair-accessible toilet is {canonical(door:width)} wide\" and can be updated. The question is \"What is the width of the door to the wheelchair accessible toilet?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#wheelchair_door_width", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "seated" + "value": "seated", + "description": "toilets:position=seated is displayed as \"There are only seated toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "urinal" + "value": "urinal", + "description": "toilets:position=urinal is displayed as \"There are only urinals here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "squat" + "value": "squat", + "description": "toilets:position=squat is displayed as \"There are only squat toilets here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "seated;urinal" + "value": "seated;urinal", + "description": "toilets:position=seated;urinal is displayed as \"Both seated toilets and urinals are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=yes with a fixed text, namely 'There is a separate, signposted area for men and women' 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": "yes" + "value": "yes", + "description": "gender_segregated=yes is displayed as \"There is a separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=no with a fixed text, namely 'There is no separate, signposted area for men and women' 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" + "value": "no", + "description": "gender_segregated=no is displayed as \"There is no separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=yes with a fixed text, namely 'Free menstrual products are available to all visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "toilets:menstrual_products=yes is displayed as \"Free menstrual products are available to all visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=limited with a fixed text, namely 'Free menstrual products are available to some visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "limited" + "value": "limited", + "description": "toilets:menstrual_products=limited is displayed as \"Free menstrual products are available to some visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=no with a fixed text, namely 'No free menstrual products are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "toilets:menstrual_products=no is displayed as \"No free menstrual products are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'toilets:menstrual_products:location' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)" + "description": "Values of `toilets:menstrual_products:location` are shown with \"The menstrual products are located in {toilets:menstrual_products:location}\" and can be updated. The question is \"Where are the free menstrual products located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=female_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for women' 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:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "female_toilet" + "value": "female_toilet", + "description": "toilets:menstrual_products:location=female_toilet is displayed as \"The free, menstrual products are located in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=male_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for men' 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:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "male_toilet" + "value": "male_toilet", + "description": "toilets:menstrual_products:location=male_toilet is displayed as \"The free, menstrual products are located in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=wheelchair_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for wheelchair users' 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:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "toilets:menstrual_products:location=wheelchair_toilet is displayed as \"The free, menstrual products are located in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "changing_table=yes is displayed as \"A changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/baby.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "changing_table=no is displayed as \"No changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if changing_table=yes)" + "description": "Values of `changing_table:location` are shown with \"A changing table is located at {changing_table:location}\" and can be updated. The question is \"Where is the changing table located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'A changing table is in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if changing_table=yes)", - "value": "female_toilet" + "value": "female_toilet", + "description": "changing_table:location=female_toilet is displayed as \"A changing table is in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'A changing table is in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if changing_table=yes)", - "value": "male_toilet" + "value": "male_toilet", + "description": "changing_table:location=male_toilet is displayed as \"A changing table is in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'A changing table is in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if changing_table=yes)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "changing_table:location=wheelchair_toilet is displayed as \"A changing table is in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' 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 'Climbing gyms, clubs and spots') (This is only shown if changing_table=yes)", - "value": "dedicated_room" + "value": "dedicated_room", + "description": "changing_table:location=dedicated_room is displayed as \"A changing table is in a dedicated room\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "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": "supervised", + "value": "yes", + "description": "supervised=yes is displayed as \"There is a person supervising these toilets during (most of) the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "toilets:handwashing", - "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets don't 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": "supervised", + "value": "interval", + "description": "supervised=interval is displayed as \"There is a person supervising these toilets, but they are present only during certain times of the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "supervised", + "value": "no", + "description": "supervised=no is displayed as \"These toilets are not supervised\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:paper_supplied", - "description": "Layer 'Toilets' 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 'Climbing gyms, clubs and spots') (This is only shown if toilets:position!=urinal)", - "value": "yes" + "value": "yes", + "description": "toilets:paper_supplied=yes is displayed as \"This toilet is equipped with toilet paper\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:paper_supplied", - "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" + "value": "no", + "description": "toilets:paper_supplied=no is displayed as \"You have to bring your own toilet paper to this toilet\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "description", - "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "key": "toilets:handwashing", + "value": "yes", + "description": "toilets:handwashing=yes is displayed as \"These toilets have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "no", + "description": "toilets:handwashing=no is displayed as \"These toilets don't have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "electric_hand_dryer", + "description": "toilets:hands_drying=electric_hand_dryer is displayed as \"Electric hand dryers are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "paper_towel", + "description": "toilets:hands_drying=paper_towel is displayed as \"Paper towels are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel_cabinet", + "description": "toilets:hands_drying=towel_cabinet is displayed as \"A towel roll cabinet is available for drying hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel", + "description": "toilets:hands_drying=towel is displayed as \"A fabric towel available to dry your hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "no", + "description": "toilets:hands_drying=no is displayed as \"There are no hand drying facilities available.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "amenity", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Drinking water showing features with this tag", - "value": "drinking_water" + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "drinking_water", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Drinking water showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Drinking water showing features with this tag", - "value": "drinking_water" - }, - { - "key": "id", - "description": "Layer 'Drinking water' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "description": "Values of `operational_status` are shown with \"The operational status is {operational_status}\" and can be updated. The question is \"Is this drinking water spot still operational?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This drinking water is broken\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This drinking water is closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "Layer 'Drinking water' shows disused:amenity=drinking_water with a fixed text, namely 'This drinking water is permanently closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "drinking_water" + "value": "drinking_water", + "description": "disused:amenity=drinking_water is displayed as \"This drinking water is permanently closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fee", - "description": "Layer 'Drinking water' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" - }, - { - "key": "fee", - "description": "Layer 'Drinking water' shows fee=yes with a fixed text, namely 'One needs to pay to use this drinking water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"One needs to pay to use this drinking water point\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bubbler with a fixed text, namely 'This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "bubbler" + "value": "bubbler", + "description": "fountain=bubbler is displayed as \"This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bubbler.svg" }, { "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bottle_refill with a fixed text, namely 'This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "bottle_refill" + "value": "bottle_refill", + "description": "fountain=bottle_refill is displayed as \"This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bottle.svg" }, { "key": "man_made", - "description": "Layer 'Drinking water' shows man_made=water_tap with a fixed text, namely 'This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "water_tap" + "value": "water_tap", + "description": "man_made=water_tap is displayed as \"This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/tap.svg" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fountain!=bottle_refill)", - "value": "yes" + "value": "yes", + "description": "bottle=yes is displayed as \"It is easy to refill water bottles\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if fountain!=bottle_refill)", - "value": "no" + "value": "no", + "description": "bottle=no is displayed as \"Water bottles may not fit\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "iced_water", - "description": "Layer 'Drinking water' shows iced_water=yes with a fixed text, namely 'Ice-cold water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "iced_water=yes is displayed as \"Ice-cold water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "cold_water", - "description": "Layer 'Drinking water' shows cold_water=yes with a fixed text, namely 'Actively cooled water is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "cold_water=yes is displayed as \"Actively cooled water is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "room_temperature_water", - "description": "Layer 'Drinking water' shows room_temperature_water=yes with a fixed text, namely 'Ambient temperature water (without active cooling or heating) is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "room_temperature_water=yes is displayed as \"Ambient temperature water (without active cooling or heating) is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "warm_water", - "description": "Layer 'Drinking water' shows warm_water=yes with a fixed text, namely 'Warmed water is provided here; the water is not dangerously hot' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "warm_water=yes is displayed as \"Warmed water is provided here; the water is not dangerously hot\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "hot_water", - "description": "Layer 'Drinking water' shows hot_water=yes with a fixed text, namely 'Hot water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "hot_water=yes is displayed as \"Hot water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "no" + "value": "no", + "description": "seasonal=no is displayed as \"Available all around the year\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "summer" + "value": "summer", + "description": "seasonal=summer is displayed as \"Only available in summer\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "spring;summer;autumn" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" + "value": "spring;summer;autumn", + "description": "seasonal=spring;summer;autumn is displayed as \"Closed during the winter\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/no_winter.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) with a fixed text, namely 'This drinking water fountain is closed this season. As such, the opening hours are not shown.' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "closed" + "description": "seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) is displayed as \"This drinking water fountain is closed this season. As such, the opening hours are not shown.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "tourism", - "description": "Layer 'Drinking water' shows tourism=artwork with a fixed text, namely 'This drinking water point has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This drinking water point has an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Drinking water' shows not:tourism:artwork=yes with a fixed text, namely 'This drinking water point does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This drinking water point does not have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "tourism", - "description": "Layer 'Drinking water' shows tourism= with a fixed text, namely 'This drinking water point probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') Picking this answer will delete the key tourism.", - "value": "" + "description": "tourism= is displayed as \"This drinking water point probably doesn't have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_wikidata", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artist_name", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_name", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "website", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_website", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if tourism=artwork)" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_subject", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "information", - "description": "The MapComplete theme Climbing gyms, clubs and spots has a layer Guideposts showing features with this tag", - "value": "guidepost" - }, - { - "key": "id", - "description": "Layer 'Guideposts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "guidepost", + "description": "Features with this tag are displayed by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "bicycle", - "description": "Layer 'Guideposts' shows bicycle=yes with a fixed text, namely 'This guidepost shows bicycle routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"This guidepost shows bicycle routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "hiking", - "description": "Layer 'Guideposts' shows hiking=yes with a fixed text, namely 'This guidepost shows hiking routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "hiking=yes is displayed as \"This guidepost shows hiking routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "mtb", - "description": "Layer 'Guideposts' shows mtb=yes with a fixed text, namely 'This guidepost shows mountain bike routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "mtb=yes is displayed as \"This guidepost shows mountain bike routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "horse", - "description": "Layer 'Guideposts' shows horse=yes with a fixed text, namely 'This guidepost shows horse riding routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "horse=yes is displayed as \"This guidepost shows horse riding routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "ski", - "description": "Layer 'Guideposts' shows ski=yes with a fixed text, namely 'This guidepost shows ski routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')", - "value": "yes" + "value": "yes", + "description": "ski=yes is displayed as \"This guidepost shows ski routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "name", + "description": "Values of `name` are shown with \"Name noted on the guidepost: {name}\" and can be updated. The question is \"What is the name noted on this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "noname", + "value": "yes", + "description": "noname=yes is displayed as \"There is no name noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "ref", + "description": "Values of `ref` are shown with \"Reference number of the guidepost: {ref}\" and can be updated. The question is \"What is the reference number of this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "noref", + "value": "yes", + "description": "noref=yes is displayed as \"There is no reference number noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "ele", + "description": "Values of `ele` are shown with \"Elevation noted on the guidepost: {ele} m\" and can be updated. The question is \"What is the elevation noted on this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "noele", + "value": "yes", + "description": "noele=yes is displayed as \"There is no elevation noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele", + "icon_url": "./assets/layers/guidepost/guidepost.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_clock.json b/Docs/TagInfo/mapcomplete_clock.json index d9b90cc001..9fa4e0800f 100644 --- a/Docs/TagInfo/mapcomplete_clock.json +++ b/Docs/TagInfo/mapcomplete_clock.json @@ -7,186 +7,256 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/clock/clock.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Clocks has a layer Clocks showing features with this tag", - "value": "clock" + "value": "clock", + "description": "Features with this tag are displayed by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "id", - "description": "Layer 'Clocks' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Clocks') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "panoramax", - "description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "mapillary", - "description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "wikidata", - "description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "wikipedia", - "description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "support", - "description": "Layer 'Clocks' shows support=pole with a fixed text, namely 'This clock is mounted on a pole' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "pole" + "value": "pole", + "description": "support=pole is displayed as \"This clock is mounted on a pole\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "support", - "description": "Layer 'Clocks' shows support=wall_mounted with a fixed text, namely 'This clock is mounted on a wall, usually through a support perpendicular to the wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "wall_mounted" + "value": "wall_mounted", + "description": "support=wall_mounted is displayed as \"This clock is mounted on a wall, usually through a support perpendicular to the wall\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "support", - "description": "Layer 'Clocks' shows support=wall with a fixed text, namely 'This clock is mounted directly on a wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "wall" + "value": "wall", + "description": "support=wall is displayed as \"This clock is mounted directly on a wall\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "support", - "description": "Layer 'Clocks' shows support=billboard with a fixed text, namely 'This clock is part of a billboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "billboard" + "value": "billboard", + "description": "support=billboard is displayed as \"This clock is part of a billboard\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "support", - "description": "Layer 'Clocks' shows support=ground with a fixed text, namely 'This clock is on the ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "ground" + "value": "ground", + "description": "support=ground is displayed as \"This clock is on the ground\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "display", - "description": "Layer 'Clocks' shows display=analog with a fixed text, namely 'This clock displays the time with hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "analog" + "value": "analog", + "description": "display=analog is displayed as \"This clock displays the time with hands\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#display", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "display", - "description": "Layer 'Clocks' shows display=digital with a fixed text, namely 'This clock displays the time with digits' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "digital" + "value": "digital", + "description": "display=digital is displayed as \"This clock displays the time with digits\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#display", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "display", - "description": "Layer 'Clocks' shows display=sundial with a fixed text, namely 'This clock displays the time with a sundial' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "sundial" + "value": "sundial", + "description": "display=sundial is displayed as \"This clock displays the time with a sundial\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#display", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "display", - "description": "Layer 'Clocks' shows display=unorthodox with a fixed text, namely 'This clock displays the time in a non-standard way, e.g using binary, water or something else' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "unorthodox" + "value": "unorthodox", + "description": "display=unorthodox is displayed as \"This clock displays the time in a non-standard way, e.g using binary, water or something else\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#display", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "indoor", - "description": "Layer 'Clocks' shows indoor=yes with a fixed text, namely 'This clock is indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This clock is indoors\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#indoor", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "indoor", - "description": "Layer 'Clocks' shows indoor=no with a fixed text, namely 'This clock is outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This clock is outdoors\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#indoor", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "visibility", - "description": "Layer 'Clocks' shows visibility=house with a fixed text, namely 'This clock is visible from about 5 meters away (small wall-mounted clock)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks') (This is only shown if indoor!=yes)", - "value": "house" + "value": "house", + "description": "visibility=house is displayed as \"This clock is visible from about 5 meters away (small wall-mounted clock)\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#visibility", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "visibility", - "description": "Layer 'Clocks' shows visibility=street with a fixed text, namely 'This clock is visible from about 20 meters away (medium size billboard clock)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks') (This is only shown if indoor!=yes)", - "value": "street" + "value": "street", + "description": "visibility=street is displayed as \"This clock is visible from about 20 meters away (medium size billboard clock)\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#visibility", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "visibility", - "description": "Layer 'Clocks' shows visibility=area with a fixed text, namely 'This clock is visible from more than 20 meters away (e.g. a church clock or station clock)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks') (This is only shown if indoor!=yes)", - "value": "area" + "value": "area", + "description": "visibility=area is displayed as \"This clock is visible from more than 20 meters away (e.g. a church clock or station clock)\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#visibility", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "date", - "description": "Layer 'Clocks' shows date=yes with a fixed text, namely 'This clock also displays the date' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "yes" + "value": "yes", + "description": "date=yes is displayed as \"This clock also displays the date\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#date", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "date", - "description": "Layer 'Clocks' shows date=no with a fixed text, namely 'This clock does not display the date' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "no" + "value": "no", + "description": "date=no is displayed as \"This clock does not display the date\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#date", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "date", - "description": "Layer 'Clocks' shows date= with a fixed text, namely 'This clock does probably not display the date' (in the mapcomplete.org theme 'Clocks') Picking this answer will delete the key date.", - "value": "" + "description": "date= is displayed as \"This clock does probably not display the date\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#date", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "thermometer", - "description": "Layer 'Clocks' shows thermometer=yes with a fixed text, namely 'This clock also displays the temperature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "yes" + "value": "yes", + "description": "thermometer=yes is displayed as \"This clock also displays the temperature\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#thermometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "thermometer", - "description": "Layer 'Clocks' shows thermometer=no with a fixed text, namely 'This clock does not display the temperature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "no" + "value": "no", + "description": "thermometer=no is displayed as \"This clock does not display the temperature\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#thermometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "thermometer", - "description": "Layer 'Clocks' shows thermometer= with a fixed text, namely 'This clock does probably not display the temperature' (in the mapcomplete.org theme 'Clocks') Picking this answer will delete the key thermometer.", - "value": "" + "description": "thermometer= is displayed as \"This clock does probably not display the temperature\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#thermometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "barometer", - "description": "Layer 'Clocks' shows barometer=yes with a fixed text, namely 'This clock also displays the air pressure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "yes" + "value": "yes", + "description": "barometer=yes is displayed as \"This clock also displays the air pressure\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#barometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "barometer", - "description": "Layer 'Clocks' shows barometer=no with a fixed text, namely 'This clock does not display the air pressure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "no" + "value": "no", + "description": "barometer=no is displayed as \"This clock does not display the air pressure\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#barometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "barometer", - "description": "Layer 'Clocks' shows barometer= with a fixed text, namely 'This clock does probably not display the air pressure' (in the mapcomplete.org theme 'Clocks') Picking this answer will delete the key barometer.", - "value": "" + "description": "barometer= is displayed as \"This clock does probably not display the air pressure\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#barometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "hygrometer", - "description": "Layer 'Clocks' shows hygrometer=yes with a fixed text, namely 'This clock also displays the humidity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "yes" + "value": "yes", + "description": "hygrometer=yes is displayed as \"This clock also displays the humidity\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#hygrometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "hygrometer", - "description": "Layer 'Clocks' shows hygrometer=no with a fixed text, namely 'This clock does not display the humidity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "no" + "value": "no", + "description": "hygrometer=no is displayed as \"This clock does not display the humidity\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#hygrometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "hygrometer", - "description": "Layer 'Clocks' shows hygrometer= with a fixed text, namely 'This clock does probably not display the humidity' (in the mapcomplete.org theme 'Clocks') Picking this answer will delete the key hygrometer.", - "value": "" + "description": "hygrometer= is displayed as \"This clock does probably not display the humidity\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#hygrometer", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "faces", - "description": "Layer 'Clocks' shows and asks freeform values for key 'faces' (in the mapcomplete.org theme 'Clocks')" + "description": "Values of `faces` are shown with \"This clock has {faces} faces\" and can be updated. The question is \"How many faces does this clock have?\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#faces", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "faces", - "description": "Layer 'Clocks' shows faces=1 with a fixed text, namely 'This clock has one face' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "1" + "value": "1", + "description": "faces=1 is displayed as \"This clock has one face\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#faces", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "faces", - "description": "Layer 'Clocks' shows faces=2 with a fixed text, namely 'This clock has two faces' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "2" + "value": "2", + "description": "faces=2 is displayed as \"This clock has two faces\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#faces", + "icon_url": "./assets/layers/clock/clock.svg" }, { "key": "faces", - "description": "Layer 'Clocks' shows faces=4 with a fixed text, namely 'This clock has four faces' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')", - "value": "4" + "value": "4", + "description": "faces=4 is displayed as \"This clock has four faces\" by layer Clocks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#faces", + "icon_url": "./assets/layers/clock/clock.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cycle_infra.json b/Docs/TagInfo/mapcomplete_cycle_infra.json index 3b39865294..a3b5cf7a0d 100644 --- a/Docs/TagInfo/mapcomplete_cycle_infra.json +++ b/Docs/TagInfo/mapcomplete_cycle_infra.json @@ -7,1246 +7,1583 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/cycle_infra/cycle-infra.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "cycleway" + "value": "cycleway", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "lane" + "value": "lane", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "shared_lane" + "value": "shared_lane", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "track" + "value": "track", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "residential" + "value": "residential", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "tertiary" + "value": "tertiary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "unclassified" + "value": "unclassified", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "primary" + "value": "primary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "secondary" + "value": "secondary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "tertiary_link" + "value": "tertiary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "primary_link" + "value": "primary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "secondary_link" + "value": "secondary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "service" + "value": "service", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "footway" + "value": "footway", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "pedestrian" + "value": "pedestrian", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "living_street" + "value": "living_street", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "path" + "value": "path", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cycleways and roads showing features with this tag", - "value": "designated" + "value": "designated", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "id", - "description": "Layer 'Cycleways and roads' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Cycleways and roads, Barriers, Crossings, Bicycle counters, Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Barriers, Crossings, Bicycle counters, Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "panoramax", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Barriers, Crossings, Bicycle counters, Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "mapillary", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Barriers, Crossings, Bicycle counters, Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "wikidata", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Barriers, Crossings, Bicycle counters, Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "wikipedia", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Barriers, Crossings, Bicycle counters, Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=shared_lane with a fixed text, namely 'There is a shared lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "shared_lane" + "value": "shared_lane", + "description": "cycleway=shared_lane is displayed as \"There is a shared lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=lane with a fixed text, namely 'There is a lane next to the road (separated with paint)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "lane" + "value": "lane", + "description": "cycleway=lane is displayed as \"There is a lane next to the road (separated with paint)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=track with a fixed text, namely 'There is a track, but no cycleway drawn separately from this road on the map.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "track" + "value": "track", + "description": "cycleway=track is displayed as \"There is a track, but no cycleway drawn separately from this road on the map.\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=separate with a fixed text, namely 'There is a separately drawn cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "separate" + "value": "separate", + "description": "cycleway=separate is displayed as \"There is a separately drawn cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "no" - }, - { - "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "no" + "value": "no", + "description": "cycleway=no is displayed as \"There is no cycleway\" by layers Cycleways and roads, Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This street is lit\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=no with a fixed text, namely 'This road is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "no" + "value": "no", + "description": "lit=no is displayed as \"This road is not lit\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=sunset-sunrise with a fixed text, namely 'This road is lit at night' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "sunset-sunrise" + "value": "sunset-sunrise", + "description": "lit=sunset-sunrise is displayed as \"This road is lit at night\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=24/7 with a fixed text, namely 'This road is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "24/7" + "value": "24/7", + "description": "lit=24/7 is displayed as \"This road is lit 24/7\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "30" + "value": "30", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "overtaking:motor_vehicle", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "no" + "value": "no", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road=yes is displayed as \"This street is a bicycle road\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key proposed:bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "30" + "value": "30", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "source:maxspeed", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "DE:bicycle_road" + "value": "DE:bicycle_road", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "vehicle", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "no" + "value": "no", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "designated" + "value": "designated", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key proposed:bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "overtaking:motor_vehicle", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key overtaking:motor_vehicle. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1020-30" + "value": "DE:244.1,1020-30", + "description": "traffic_sign=DE:244.1,1020-30 is displayed as \"Residents allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1020-30.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12,1024-10" + "value": "DE:244.1,1022-12,1024-10", + "description": "traffic_sign=DE:244.1,1022-12,1024-10 is displayed as \"Motor vehicles allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_KFZ_frei.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12" + "value": "DE:244.1,1022-12", + "description": "traffic_sign=DE:244.1,1022-12 is displayed as \"Motorcycles allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1022-12.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1024-10" + "value": "DE:244.1,1024-10", + "description": "traffic_sign=DE:244.1,1024-10 is displayed as \"Cars allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1024-10.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1" + "value": "DE:244.1", + "description": "traffic_sign=DE:244.1 is displayed as \"There are no supplementary signs at this bicycle road.\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)" + "description": "Values of `maxspeed` are shown with \"The maximum speed on this road is {maxspeed} km/h\" and can be updated. The question is \"What is the maximum speed in this street?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=20 with a fixed text, namely 'The maximum speed is 20 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "20" + "value": "20", + "description": "maxspeed=20 is displayed as \"The maximum speed is 20 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=30 with a fixed text, namely 'The maximum speed is 30 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "30" + "value": "30", + "description": "maxspeed=30 is displayed as \"The maximum speed is 30 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=50 with a fixed text, namely 'The maximum speed is 50 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "50" + "value": "50", + "description": "maxspeed=50 is displayed as \"The maximum speed is 50 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=70 with a fixed text, namely 'The maximum speed is 70 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "70" + "value": "70", + "description": "maxspeed=70 is displayed as \"The maximum speed is 70 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=90 with a fixed text, namely 'The maximum speed is 90 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "90" + "value": "90", + "description": "maxspeed=90 is displayed as \"The maximum speed is 90 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:surface' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)" + "description": "Values of `cycleway:surface` are shown with \"This cyleway is made of {cycleway:surface}\" and can be updated. The question is \"What is the surface of the cycleway made from?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=unpaved with a fixed text, namely 'This cycleway is unpaved' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "unpaved" + "value": "unpaved", + "description": "cycleway:surface=unpaved is displayed as \"This cycleway is unpaved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=paved with a fixed text, namely 'This cycleway is paved' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "paved" + "value": "paved", + "description": "cycleway:surface=paved is displayed as \"This cycleway is paved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "asphalt" + "value": "asphalt", + "description": "cycleway:surface=asphalt is displayed as \"This cycleway is made of asphalt\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "paving_stones" + "value": "paving_stones", + "description": "cycleway:surface=paving_stones is displayed as \"This cycleway is made of smooth paving stones\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "concrete" + "value": "concrete", + "description": "cycleway:surface=concrete is displayed as \"This cycleway is made of concrete\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "cobblestone" + "value": "cobblestone", + "description": "cycleway:surface=cobblestone is displayed as \"This cycleway is made of cobblestone (unhewn or sett)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "unhewn_cobblestone" + "value": "unhewn_cobblestone", + "description": "cycleway:surface=unhewn_cobblestone is displayed as \"This cycleway is made of raw, natural cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "sett" + "value": "sett", + "description": "cycleway:surface=sett is displayed as \"This cycleway is made of flat, square cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "wood" + "value": "wood", + "description": "cycleway:surface=wood is displayed as \"This cycleway is made of wood\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "gravel" + "value": "gravel", + "description": "cycleway:surface=gravel is displayed as \"This cycleway is made of gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "cycleway:surface=fine_gravel is displayed as \"This cycleway is made of fine gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "pebblestone" + "value": "pebblestone", + "description": "cycleway:surface=pebblestone is displayed as \"This cycleway is made of pebblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "ground" + "value": "ground", + "description": "cycleway:surface=ground is displayed as \"This cycleway is made from raw ground\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'incline' (in the mapcomplete.org theme 'Bicycle infrastructure')" + "description": "Values of `incline` are shown with \"This road has an slope of {incline}\" and can be updated. The question is \"Does {title()} have an incline?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline= with a fixed text, namely 'There is (probably) no incline here' (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key incline.", - "value": "" + "description": "incline= is displayed as \"There is (probably) no incline here\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "up" + "value": "up", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "down" + "value": "down", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "yes" + "value": "yes", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "excellent" + "value": "excellent", + "description": "cycleway:smoothness=excellent is displayed as \"Usable for thin rollers: rollerblade, skateboard\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "good" + "value": "good", + "description": "cycleway:smoothness=good is displayed as \"Usable for thin wheels: racing bike\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "intermediate" + "value": "intermediate", + "description": "cycleway:smoothness=intermediate is displayed as \"Usable for normal wheels: city bike, wheelchair, scooter\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "bad" + "value": "bad", + "description": "cycleway:smoothness=bad is displayed as \"Usable for robust wheels: trekking bike, car, rickshaw\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "very_bad" + "value": "very_bad", + "description": "cycleway:smoothness=very_bad is displayed as \"Usable for vehicles with high clearance: light duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "horrible" + "value": "horrible", + "description": "cycleway:smoothness=horrible is displayed as \"Usable for off-road vehicles: heavy duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "very_horrible" + "value": "very_horrible", + "description": "cycleway:smoothness=very_horrible is displayed as \"Usable for specialized off-road vehicles: tractor, ATV\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "impassable" + "value": "impassable", + "description": "cycleway:smoothness=impassable is displayed as \"Impassable / No wheeled vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'Bicycle infrastructure')" + "description": "Values of `surface` are shown with \"This road is made of {surface}\" and can be updated. The question is \"What is the surface of the street made from?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=unpaved with a fixed text, namely 'This cycleway is unhardened' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "unpaved" + "value": "unpaved", + "description": "surface=unpaved is displayed as \"This cycleway is unhardened\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=paved with a fixed text, namely 'This cycleway is paved' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "paved" + "value": "paved", + "description": "surface=paved is displayed as \"This cycleway is paved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "asphalt" + "value": "asphalt", + "description": "surface=asphalt is displayed as \"This cycleway is made of asphalt\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "paving_stones" + "value": "paving_stones", + "description": "surface=paving_stones is displayed as \"This cycleway is made of smooth paving stones\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "concrete" + "value": "concrete", + "description": "surface=concrete is displayed as \"This cycleway is made of concrete\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "cobblestone" + "value": "cobblestone", + "description": "surface=cobblestone is displayed as \"This cycleway is made of cobblestone (unhewn or sett)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "unhewn_cobblestone" + "value": "unhewn_cobblestone", + "description": "surface=unhewn_cobblestone is displayed as \"This cycleway is made of raw, natural cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "sett" + "value": "sett", + "description": "surface=sett is displayed as \"This cycleway is made of flat, square cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "wood" + "value": "wood", + "description": "surface=wood is displayed as \"This cycleway is made of wood\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "gravel" + "value": "gravel", + "description": "surface=gravel is displayed as \"This cycleway is made of gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "surface=fine_gravel is displayed as \"This cycleway is made of fine gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "pebblestone" + "value": "pebblestone", + "description": "surface=pebblestone is displayed as \"This cycleway is made of pebblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "ground" + "value": "ground", + "description": "surface=ground is displayed as \"This cycleway is made from raw ground\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=no | highway=cycleway)", - "value": "excellent" + "value": "excellent", + "description": "smoothness=excellent is displayed as \"Usable for thin rollers: rollerblade, skateboard\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=no | highway=cycleway)", - "value": "good" + "value": "good", + "description": "smoothness=good is displayed as \"Usable for thin wheels: racing bike\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=no | highway=cycleway)", - "value": "intermediate" + "value": "intermediate", + "description": "smoothness=intermediate is displayed as \"Usable for normal wheels: city bike, wheelchair, scooter\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=no | highway=cycleway)", - "value": "bad" + "value": "bad", + "description": "smoothness=bad is displayed as \"Usable for robust wheels: trekking bike, car, rickshaw\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=no | highway=cycleway)", - "value": "very_bad" + "value": "very_bad", + "description": "smoothness=very_bad is displayed as \"Usable for vehicles with high clearance: light duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=no | highway=cycleway)", - "value": "horrible" + "value": "horrible", + "description": "smoothness=horrible is displayed as \"Usable for off-road vehicles: heavy duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=no | highway=cycleway)", - "value": "very_horrible" + "value": "very_horrible", + "description": "smoothness=very_horrible is displayed as \"Usable for specialized off-road vehicles: tractor, ATV\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=no | highway=cycleway)", - "value": "impassable" + "value": "impassable", + "description": "smoothness=impassable is displayed as \"Impassable / No wheeled vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "width", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)" + "description": "Values of `width` are shown with \"The carriage width of this road is {width}m\" and can be updated. The question is \"What is the carriage width of this road (in meters)?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#width", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D7" + "value": "BE:D7", + "description": "cycleway:traffic_sign=BE:D7 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign~^(BE:D7;.*)$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))" + "description": "cycleway:traffic_sign~^(BE:D7;.*)$ is displayed as \"Compulsory cycleway (with supplementary sign)
\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D9" + "value": "BE:D9", + "description": "cycleway:traffic_sign=BE:D9 is displayed as \"Segregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D09.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D10" + "value": "BE:D10", + "description": "cycleway:traffic_sign=BE:D10 is displayed as \"Unsegregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D10.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "none" + "value": "none", + "description": "cycleway:traffic_sign=none is displayed as \"No traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D7" + "value": "BE:D7", + "description": "traffic_sign=BE:D7 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign~^(BE:D7;.*)$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))" + "description": "traffic_sign~^(BE:D7;.*)$ is displayed as \"Compulsory cycleway (with supplementary sign)
\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D9" + "value": "BE:D9", + "description": "traffic_sign=BE:D9 is displayed as \"Segregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D09.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D10" + "value": "BE:D10", + "description": "traffic_sign=BE:D10 is displayed as \"Unsegregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D10.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G11 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G11" + "value": "NL:G11", + "description": "traffic_sign=NL:G11 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G11.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G12a with a fixed text, namely 'Compulsory (moped)cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G12a" + "value": "NL:G12a", + "description": "traffic_sign=NL:G12a is displayed as \"Compulsory (moped)cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G12a.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G13 with a fixed text, namely 'Non-compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G13" + "value": "NL:G13", + "description": "traffic_sign=NL:G13 is displayed as \"Non-compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G13.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "none" + "value": "none", + "description": "traffic_sign=none is displayed as \"No traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M6 with a fixed text, namely 'Mopeds must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M6" + "value": "BE:D7;BE:M6", + "description": "cycleway:traffic_sign=BE:D7;BE:M6 is displayed as \"Mopeds must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M6.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M13 with a fixed text, namely 'Speedpedelecs must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M13" + "value": "BE:D7;BE:M13", + "description": "cycleway:traffic_sign=BE:D7;BE:M13 is displayed as \"Speedpedelecs must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M13.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M14 with a fixed text, namely 'Mopeds and speedpedelecs must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M14" + "value": "BE:D7;BE:M14", + "description": "cycleway:traffic_sign=BE:D7;BE:M14 is displayed as \"Mopeds and speedpedelecs must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M14.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M7 with a fixed text, namely 'Mopeds are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M7" + "value": "BE:D7;BE:M7", + "description": "cycleway:traffic_sign=BE:D7;BE:M7 is displayed as \"Mopeds are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M7.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M15 with a fixed text, namely 'Speedpedelecs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M15" + "value": "BE:D7;BE:M15", + "description": "cycleway:traffic_sign=BE:D7;BE:M15 is displayed as \"Speedpedelecs are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M15.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M16 with a fixed text, namely 'Mopeds and speedpedelecs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M16" + "value": "BE:D7;BE:M16", + "description": "cycleway:traffic_sign=BE:D7;BE:M16 is displayed as \"Mopeds and speedpedelecs are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M16.svg" }, { "key": "cycleway:traffic_sign:supplementary", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign:supplementary=none with a fixed text, namely 'No supplementary traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "none" + "value": "none", + "description": "cycleway:traffic_sign:supplementary=none is displayed as \"No supplementary traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:buffer", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:buffer' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=track | cycleway=lane)" + "description": "Values of `cycleway:buffer` are shown with \"The buffer besides this cycleway is {cycleway:buffer} m\" and can be updated. The question is \"How wide is the gap between the cycleway and the road?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleways_and_roads_cycleway_buffer", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=track | cycleway=lane)", - "value": "dashed_line" + "value": "dashed_line", + "description": "cycleway:separation=dashed_line is displayed as \"This cycleway is separated by a dashed line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=track | cycleway=lane)", - "value": "solid_line" + "value": "solid_line", + "description": "cycleway:separation=solid_line is displayed as \"This cycleway is separated by a solid line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=track | cycleway=lane)", - "value": "parking_lane" + "value": "parking_lane", + "description": "cycleway:separation=parking_lane is displayed as \"This cycleway is separated by a parking lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycleway=track | cycleway=lane)", - "value": "kerb" + "value": "kerb", + "description": "cycleway:separation=kerb is displayed as \"This cycleway is separated by a kerb\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=cycleway | highway=path)", - "value": "dashed_line" + "value": "dashed_line", + "description": "separation=dashed_line is displayed as \"This cycleway is separated by a dashed line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=cycleway | highway=path)", - "value": "solid_line" + "value": "solid_line", + "description": "separation=solid_line is displayed as \"This cycleway is separated by a solid line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=cycleway | highway=path)", - "value": "parking_lane" + "value": "parking_lane", + "description": "separation=parking_lane is displayed as \"This cycleway is separated by a parking lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=cycleway | highway=path)", - "value": "kerb" + "value": "kerb", + "description": "separation=kerb is displayed as \"This cycleway is separated by a kerb\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "barrier", - "description": "The MapComplete theme Bicycle infrastructure has a layer Barriers showing features with this tag", - "value": "bollard" + "value": "bollard", + "description": "Features with this tag are displayed by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "barrier", - "description": "The MapComplete theme Bicycle infrastructure has a layer Barriers showing features with this tag", - "value": "cycle_barrier" - }, - { - "key": "id", - "description": "Layer 'Barriers' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Barriers allows to upload images and adds them under the 'panoramax'-tag (and 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 'Barriers allows to upload images and adds them under the 'panoramax'-tag (and 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 'Barriers allows to upload images and adds them under the 'panoramax'-tag (and 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 'Barriers allows to upload images and adds them under the 'panoramax'-tag (and 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 'Barriers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "cycle_barrier", + "description": "Features with this tag are displayed by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "bicycle", - "description": "Layer 'Barriers' shows bicycle=yes with a fixed text, namely 'A cyclist can go past this.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if _referencing_ways~.+)", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"A cyclist can go past this.\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#bicycle_yes_no", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "bicycle", - "description": "Layer 'Barriers' shows bicycle=no with a fixed text, namely 'A cyclist can not go past this.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if _referencing_ways~.+)", - "value": "no" + "value": "no", + "description": "bicycle=no is displayed as \"A cyclist can not go past this.\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#bicycle_yes_no", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "barrier", - "description": "Layer 'Barriers' shows barrier=bollard with a fixed text, namely 'This is a single bollard in the road' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "bollard" + "value": "bollard", + "description": "barrier=bollard is displayed as \"This is a single bollard in the road\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#barrier_type", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "barrier", - "description": "Layer 'Barriers' shows barrier=cycle_barrier with a fixed text, namely 'This is a cycle barrier slowing down cyclists' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "cycle_barrier" + "value": "cycle_barrier", + "description": "barrier=cycle_barrier is displayed as \"This is a cycle barrier slowing down cyclists\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#barrier_type", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "bollard", - "description": "Layer 'Barriers' shows bollard=removable with a fixed text, namely 'Removable bollard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=bollard)", - "value": "removable" + "value": "removable", + "description": "bollard=removable is displayed as \"Removable bollard\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Bollard_type", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "bollard", - "description": "Layer 'Barriers' shows bollard=fixed with a fixed text, namely 'Fixed bollard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=bollard)", - "value": "fixed" + "value": "fixed", + "description": "bollard=fixed is displayed as \"Fixed bollard\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Bollard_type", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "bollard", - "description": "Layer 'Barriers' shows bollard=foldable with a fixed text, namely 'Bollard that can be folded down' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=bollard)", - "value": "foldable" + "value": "foldable", + "description": "bollard=foldable is displayed as \"Bollard that can be folded down\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Bollard_type", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "bollard", - "description": "Layer 'Barriers' shows bollard=flexible with a fixed text, namely 'Flexible bollard, usually plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=bollard)", - "value": "flexible" + "value": "flexible", + "description": "bollard=flexible is displayed as \"Flexible bollard, usually plastic\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Bollard_type", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "bollard", - "description": "Layer 'Barriers' shows bollard=rising with a fixed text, namely 'Rising bollard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=bollard)", - "value": "rising" + "value": "rising", + "description": "bollard=rising is displayed as \"Rising bollard\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Bollard_type", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "cycle_barrier", - "description": "Layer 'Barriers' shows cycle_barrier=single with a fixed text, namely 'Single, just two barriers with a space inbetween' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=cycle_barrier)", - "value": "single" + "value": "single", + "description": "cycle_barrier=single is displayed as \"Single, just two barriers with a space inbetween\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Cycle_barrier_type", + "icon_url": "./assets/themes/cycle_infra/Cycle_barrier_single.png" }, { "key": "cycle_barrier", - "description": "Layer 'Barriers' shows cycle_barrier=double with a fixed text, namely 'Double, two barriers behind each other' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=cycle_barrier)", - "value": "double" + "value": "double", + "description": "cycle_barrier=double is displayed as \"Double, two barriers behind each other\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Cycle_barrier_type", + "icon_url": "./assets/themes/cycle_infra/Cycle_barrier_double.svg" }, { "key": "cycle_barrier", - "description": "Layer 'Barriers' shows cycle_barrier=triple with a fixed text, namely 'Triple, three barriers behind each other' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=cycle_barrier)", - "value": "triple" + "value": "triple", + "description": "cycle_barrier=triple is displayed as \"Triple, three barriers behind each other\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Cycle_barrier_type", + "icon_url": "./assets/themes/cycle_infra/Cycle_barrier_triple.png" }, { "key": "cycle_barrier", - "description": "Layer 'Barriers' shows cycle_barrier=squeeze with a fixed text, namely 'Squeeze gate, gap is smaller at top, than at the bottom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if barrier=cycle_barrier)", - "value": "squeeze" + "value": "squeeze", + "description": "cycle_barrier=squeeze is displayed as \"Squeeze gate, gap is smaller at top, than at the bottom\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Cycle_barrier_type", + "icon_url": "./assets/themes/cycle_infra/Cycle_barrier_squeeze.png" }, { "key": "maxwidth:physical", - "description": "Layer 'Barriers' shows and asks freeform values for key 'maxwidth:physical' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycle_barrier!=double & cycle_barrier!=triple & _referencing_ways~.+)" + "description": "Values of `maxwidth:physical` are shown with \"Maximum width: {maxwidth:physical} m\" and can be updated. The question is \"How wide is the gap left over besides the barrier?\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#MaxWidth", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "width:separation", - "description": "Layer 'Barriers' shows and asks freeform values for key 'width:separation' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycle_barrier=double | cycle_barrier=triple)" + "description": "Values of `width:separation` are shown with \"Space between barriers (along the length of the road): {width:separation} m\" and can be updated. The question is \"How much space is there between the barriers (along the length of the road)?\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Space_between_barrier__cyclebarrier_", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "width:opening", - "description": "Layer 'Barriers' shows and asks freeform values for key 'width:opening' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycle_barrier=double | cycle_barrier=triple)" + "description": "Values of `width:opening` are shown with \"Width of opening: {width:opening} m\" and can be updated. The question is \"How wide is the smallest opening next to the barriers?\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Width_of_opening__cyclebarrier_", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "overlap", - "description": "Layer 'Barriers' shows and asks freeform values for key 'overlap' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if cycle_barrier=double | cycle_barrier=triple)" + "description": "Values of `overlap` are shown with \"Overlap: {overlap} m\" and can be updated. The question is \"How much overlap do the barriers have?\" by layer Barriers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/barrier.md#Overlap__cyclebarrier_", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Crossings showing features with this tag", - "value": "traffic_signals" + "value": "traffic_signals", + "description": "Features with this tag are displayed by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Crossings showing features with this tag", - "value": "crossing" + "value": "crossing", + "description": "Features with this tag are displayed by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { - "key": "id", - "description": "Layer 'Crossings' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "key": "crossing:signals", + "value": "no", + "description": "crossing:signals=no is displayed as \"There are no traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#signals", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { - "key": "image", - "description": "The layer 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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": "crossing:signals", + "value": "yes", + "description": "crossing:signals=yes is displayed as \"There are traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#signals", + "icon_url": "./assets/layers/crossings/traffic_lights.svg" }, { "key": "crossing", - "description": "Layer 'Crossings' shows crossing=uncontrolled with a fixed text, namely 'Crossing, without traffic lights' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "uncontrolled" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=traffic_signals with a fixed text, namely 'Crossing with traffic signals' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "traffic_signals" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "zebra" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "unmarked" + "value": "traffic_signals", + "description": "crossing=traffic_signals is displayed as \"There are traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#signals", + "icon_url": "./assets/layers/crossings/traffic_lights.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows and asks freeform values for key 'crossing:markings' (in the mapcomplete.org theme 'Bicycle infrastructure')" + "description": "Values of `crossing:markings` are shown with \"This crossing has {crossing:markings} markings\" and can be updated. The question is \"What kind of markings does this crossing have?\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=no with a fixed text, namely 'This crossing has no markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "no" + "value": "no", + "description": "crossing:markings=no is displayed as \"This crossing has no markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/crossing_unmarked.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra with a fixed text, namely 'This crossing has zebra markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "zebra" + "value": "zebra", + "description": "crossing:markings=zebra is displayed as \"This crossing has zebra markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=yes with a fixed text, namely 'This crossing has markings of an unknown type' (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "yes" + "value": "yes", + "description": "crossing:markings=yes is displayed as \"This crossing has markings of an unknown type\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=lines with a fixed text, namely 'This crossings has lines on either side of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "lines" + "value": "lines", + "description": "crossing:markings=lines is displayed as \"This crossings has lines on either side of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_lines.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder with a fixed text, namely 'This crossing has lines on either side of the crossing, along with bars connecting them' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "ladder" + "value": "ladder", + "description": "crossing:markings=ladder is displayed as \"This crossing has lines on either side of the crossing, along with bars connecting them\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_ladder.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=dashes with a fixed text, namely 'This crossing has dashed lines on either sides of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "dashes" + "value": "dashes", + "description": "crossing:markings=dashes is displayed as \"This crossing has dashed lines on either sides of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_dashes.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=dots with a fixed text, namely 'This crossing has dotted lines on either sides of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "dots" + "value": "dots", + "description": "crossing:markings=dots is displayed as \"This crossing has dotted lines on either sides of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_dots.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=surface with a fixed text, namely 'This crossing is marked by using a different coloured surface' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "surface" + "value": "surface", + "description": "crossing:markings=surface is displayed as \"This crossing is marked by using a different coloured surface\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_surface.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder:skewed with a fixed text, namely 'This crossing has lines on either side of the crossing, along with angled bars connecting them' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "ladder:skewed" + "value": "ladder:skewed", + "description": "crossing:markings=ladder:skewed is displayed as \"This crossing has lines on either side of the crossing, along with angled bars connecting them\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_ladder_skewed.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:paired with a fixed text, namely 'This crossing has zebra markings with an interruption in every bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "zebra:paired" + "value": "zebra:paired", + "description": "crossing:markings=zebra:paired is displayed as \"This crossing has zebra markings with an interruption in every bar\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:bicolour with a fixed text, namely 'This crossing has zebra markings in alternating colours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "zebra:bicolour" + "value": "zebra:bicolour", + "description": "crossing:markings=zebra:bicolour is displayed as \"This crossing has zebra markings in alternating colours\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra_bicolour.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:double with a fixed text, namely 'This crossing has double zebra markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "zebra:double" + "value": "zebra:double", + "description": "crossing:markings=zebra:double is displayed as \"This crossing has double zebra markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra_double.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=pictograms with a fixed text, namely 'This crossing has pictograms on the road' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "pictograms" + "value": "pictograms", + "description": "crossing:markings=pictograms is displayed as \"This crossing has pictograms on the road\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder:paired with a fixed text, namely 'This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "ladder:paired" + "value": "ladder:paired", + "description": "crossing:markings=ladder:paired is displayed as \"This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=lines:paired with a fixed text, namely 'This crossing has double lines on either side of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "lines:paired" + "value": "lines:paired", + "description": "crossing:markings=lines:paired is displayed as \"This crossing has double lines on either side of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#markings", + "icon_url": "./assets/layers/crossings/markings_lines_paired.png" }, { "key": "bicycle", - "description": "Layer 'Crossings' shows bicycle=yes with a fixed text, namely 'A cyclist can use this crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"A cyclist can use this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_bicycle_allowed", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "bicycle", - "description": "Layer 'Crossings' shows bicycle=no with a fixed text, namely 'A cyclist can not use this crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "no" + "value": "no", + "description": "bicycle=no is displayed as \"A cyclist can not use this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_bicycle_allowed", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:island", - "description": "Layer 'Crossings' shows crossing:island=yes with a fixed text, namely 'This crossing has an island in the middle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "yes" + "value": "yes", + "description": "crossing:island=yes is displayed as \"This crossing has an island in the middle\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_has_island", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:island", - "description": "Layer 'Crossings' shows crossing:island=no with a fixed text, namely 'This crossing does not have an island in the middle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "no" + "value": "no", + "description": "crossing:island=no is displayed as \"This crossing does not have an island in the middle\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_has_island", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=yes with a fixed text, namely 'This crossing has tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "yes" + "value": "yes", + "description": "tactile_paving=yes is displayed as \"This crossing has tactile paving\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=no with a fixed text, namely 'This crossing does not have tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "no" + "value": "no", + "description": "tactile_paving=no is displayed as \"This crossing does not have tactile paving\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=incorrect with a fixed text, namely 'This crossing has tactile paving, but is not correct' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=crossing)", - "value": "incorrect" + "value": "incorrect", + "description": "tactile_paving=incorrect is displayed as \"This crossing has tactile paving, but is not correct\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" + }, + { + "key": "tactile_paving", + "value": "partial", + "description": "tactile_paving=partial is displayed as \"This crrosing has tactile paving, but only on one side\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "button_operated", - "description": "Layer 'Crossings' shows button_operated=yes with a fixed text, namely 'This traffic light has a button to request green light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals | crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "button_operated=yes is displayed as \"This traffic light has a button to request green light\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_button", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "button_operated", - "description": "Layer 'Crossings' shows button_operated=no with a fixed text, namely 'This traffic light does not have a button to request green light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals | crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "button_operated=no is displayed as \"This traffic light does not have a button to request green light\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_button", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=yes with a fixed text, namely 'This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:sound=yes is displayed as \"This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=no with a fixed text, namely 'This traffic light does not have sound signals to help crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:sound=no is displayed as \"This traffic light does not have sound signals to help crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=locate with a fixed text, namely 'This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals)", - "value": "locate" + "value": "locate", + "description": "traffic_signals:sound=locate is displayed as \"This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=walk with a fixed text, namely 'This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals)", - "value": "walk" + "value": "walk", + "description": "traffic_signals:sound=walk is displayed as \"This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:vibration", - "description": "Layer 'Crossings' shows traffic_signals:vibration=yes with a fixed text, namely 'The button for this traffic light has a vibration signal to indicate that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals & button_operated=yes)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:vibration=yes is displayed as \"The button for this traffic light has a vibration signal to indicate that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_vibration", + "icon_url": "./assets/layers/crossings/Vibrating_button_illustration.jpg" }, { "key": "traffic_signals:vibration", - "description": "Layer 'Crossings' shows traffic_signals:vibration=no with a fixed text, namely 'The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals & button_operated=yes)", - "value": "no" + "value": "no", + "description": "traffic_signals:vibration=no is displayed as \"The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_vibration", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:arrow", - "description": "Layer 'Crossings' shows traffic_signals:arrow=yes with a fixed text, namely 'This traffic light has an arrow pointing in the direction of crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:arrow=yes is displayed as \"This traffic light has an arrow pointing in the direction of crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_arrow", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:arrow", - "description": "Layer 'Crossings' shows traffic_signals:arrow=no with a fixed text, namely 'This traffic light does not have an arrow pointing in the direction of crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:arrow=no is displayed as \"This traffic light does not have an arrow pointing in the direction of crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_arrow", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:minimap", - "description": "Layer 'Crossings' shows traffic_signals:minimap=yes with a fixed text, namely 'This traffic light has a tactile map showing the layout of the crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:minimap=yes is displayed as \"This traffic light has a tactile map showing the layout of the crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_minimap", + "icon_url": "./assets/layers/crossings/180px-Trairvoja_mapeto.jpg" }, { "key": "traffic_signals:minimap", - "description": "Layer 'Crossings' shows traffic_signals:minimap=no with a fixed text, namely 'This traffic light does not have a tactile map showing the layout of the crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:minimap=no is displayed as \"This traffic light does not have a tactile map showing the layout of the crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_minimap", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "red_turn:right:bicycle=yes is displayed as \"A cyclist can turn right if the light is red\" by layers Crossings, Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_right_turn_through_red", + "icon_url": "./assets/layers/crossings/Belgian_road_sign_B22.svg" }, { "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)", - "value": "yes" - }, - { - "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=no with a fixed text, namely 'A cyclist can not turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)", - "value": "no" + "value": "no", + "description": "red_turn:right:bicycle=no is displayed as \"A cyclist can not turn right if the light is red\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_right_turn_through_red", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "red_turn:straight:bicycle=yes is displayed as \"A cyclist can go straight on if the light is red\" by layers Crossings, Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_continue_through_red", + "icon_url": "./assets/layers/crossings/Belgian_road_sign_B23.svg" }, { "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)", - "value": "yes" - }, - { - "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if highway=traffic_signals)", - "value": "no" + "value": "no", + "description": "red_turn:straight:bicycle=no is displayed as \"A cyclist can not go straight on if the light is red\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings.md#crossing_continue_through_red", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "man_made", - "description": "The MapComplete theme Bicycle infrastructure has a layer Bicycle counters showing features with this tag", - "value": "monitoring_station" + "value": "monitoring_station", + "description": "Features with this tag are displayed by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "monitoring:bicycle", - "description": "The MapComplete theme Bicycle infrastructure has a layer Bicycle counters showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Bicycle counters' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "yes", + "description": "Features with this tag are displayed by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "display", - "description": "Layer 'Bicycle counters' shows display=digital with a fixed text, namely 'This counter has a digital display' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "digital" + "value": "digital", + "description": "display=digital is displayed as \"This counter has a digital display\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#display", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "display", - "description": "Layer 'Bicycle counters' shows display=analog with a fixed text, namely 'This counter has an analog display' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "analog" + "value": "analog", + "description": "display=analog is displayed as \"This counter has an analog display\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#display", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "display", - "description": "Layer 'Bicycle counters' shows display=no with a fixed text, namely 'This counter has no display' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "no" + "value": "no", + "description": "display=no is displayed as \"This counter has no display\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#display", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "name", - "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Bicycle infrastructure')" + "description": "Values of `name` are shown with \"Name of the counted location: {name}\" and can be updated. The question is \"What is the name of the counted location?\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#name", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "start_date", - "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Bicycle infrastructure')" + "description": "Values of `start_date` are shown with \"This counter started counting on {start_date}\" and can be updated. The question is \"When did this counter start counting?\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#start_date", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "amenity", - "description": "Layer 'Bicycle counters' shows amenity=clock with a fixed text, namely 'This counter has a clock' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "clock" + "value": "clock", + "description": "amenity=clock is displayed as \"This counter has a clock\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#clock", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "amenity", - "description": "Layer 'Bicycle counters' shows amenity= with a fixed text, namely 'This counter has no clock' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure') Picking this answer will delete the key amenity.", - "value": "" + "description": "amenity= is displayed as \"This counter has no clock\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#clock", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "ref", - "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Bicycle infrastructure')" + "description": "Values of `ref` are shown with \"Reference number of the counter: {ref}\" and can be updated. The question is \"What is the reference number of this counter?\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#ref", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "noref", - "description": "Layer 'Bicycle counters' shows noref=yes with a fixed text, namely 'This counter has no reference number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "yes" + "value": "yes", + "description": "noref=yes is displayed as \"This counter has no reference number\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#ref", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "website", - "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Bicycle infrastructure')" + "description": "Values of `website` are shown with \"Website of the counter: {website}\" and can be updated. The question is \"Is there a website for this bicycle counter?\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#website", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "highway", - "description": "The MapComplete theme Bicycle infrastructure has a layer Cyclist Waiting Aids showing features with this tag", - "value": "cyclist_waiting_aid" - }, - { - "key": "id", - "description": "Layer 'Cyclist Waiting Aids' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Cyclist Waiting Aids allows to upload images and adds them under the 'panoramax'-tag (and 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 'Cyclist Waiting Aids allows to upload images and adds them under the 'panoramax'-tag (and 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 'Cyclist Waiting Aids allows to upload images and adds them under the 'panoramax'-tag (and 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 'Cyclist Waiting Aids allows to upload images and adds them under the 'panoramax'-tag (and 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 'Cyclist Waiting Aids allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "cyclist_waiting_aid", + "description": "Features with this tag are displayed by layer Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclist_waiting_aid.md", + "icon_url": "./assets/layers/cyclist_waiting_aid/waiting_aid.svg" }, { "key": "footrest", - "description": "Layer 'Cyclist Waiting Aids' shows footrest=yes with a fixed text, namely 'There is a board or peg to rest your foot on here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "yes" + "value": "yes", + "description": "footrest=yes is displayed as \"There is a board or peg to rest your foot on here\" by layer Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclist_waiting_aid.md#type", + "icon_url": "./assets/layers/cyclist_waiting_aid/waiting_aid.svg" }, { "key": "handrest", - "description": "Layer 'Cyclist Waiting Aids' shows handrest=yes with a fixed text, namely 'There is a rail or a handle to hold on to here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "yes" + "value": "yes", + "description": "handrest=yes is displayed as \"There is a rail or a handle to hold on to here\" by layer Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclist_waiting_aid.md#type", + "icon_url": "./assets/layers/cyclist_waiting_aid/waiting_aid.svg" }, { "key": "side", - "description": "Layer 'Cyclist Waiting Aids' shows side=left with a fixed text, namely 'This waiting aid is located on the left side' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "left" + "value": "left", + "description": "side=left is displayed as \"This waiting aid is located on the left side\" by layer Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclist_waiting_aid.md#side", + "icon_url": "./assets/layers/cyclist_waiting_aid/waiting_aid.svg" }, { "key": "side", - "description": "Layer 'Cyclist Waiting Aids' shows side=right with a fixed text, namely 'This waiting aid is located on the right side' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "right" + "value": "right", + "description": "side=right is displayed as \"This waiting aid is located on the right side\" by layer Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclist_waiting_aid.md#side", + "icon_url": "./assets/layers/cyclist_waiting_aid/waiting_aid.svg" }, { "key": "side", - "description": "Layer 'Cyclist Waiting Aids' shows side=both with a fixed text, namely 'There are waiting aids on both sides of the road' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle infrastructure')", - "value": "both" + "value": "both", + "description": "side=both is displayed as \"There are waiting aids on both sides of the road\" by layer Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclist_waiting_aid.md#side", + "icon_url": "./assets/layers/cyclist_waiting_aid/waiting_aid.svg" }, { "key": "direction", - "description": "Layer 'Cyclist Waiting Aids' shows direction=forward with a fixed text, namely 'This waiting aid can be used when going forward on this way' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if direction~.+)", - "value": "forward" + "value": "forward", + "description": "direction=forward is displayed as \"This waiting aid can be used when going forward on this way\" by layer Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclist_waiting_aid.md#direction", + "icon_url": "./assets/layers/cyclist_waiting_aid/waiting_aid.svg" }, { "key": "direction", - "description": "Layer 'Cyclist Waiting Aids' shows direction=backward with a fixed text, namely 'This waiting aid can be used when going backward on this way' (in the mapcomplete.org theme 'Bicycle infrastructure') (This is only shown if direction~.+)", - "value": "backward" + "value": "backward", + "description": "direction=backward is displayed as \"This waiting aid can be used when going backward on this way\" by layer Cyclist Waiting Aids", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclist_waiting_aid.md#direction", + "icon_url": "./assets/layers/cyclist_waiting_aid/waiting_aid.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cyclestreets.json b/Docs/TagInfo/mapcomplete_cyclestreets.json index c4bf63c11e..e0cd3779b0 100644 --- a/Docs/TagInfo/mapcomplete_cyclestreets.json +++ b/Docs/TagInfo/mapcomplete_cyclestreets.json @@ -7,532 +7,243 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/cyclestreets/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "cyclestreet", - "description": "The MapComplete theme Cyclestreets has a layer Cyclestreets showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Cyclestreets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md" }, { "key": "bicycle_road", - "description": "The MapComplete theme Cyclestreets has a layer Cyclestreets showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Cyclestreets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md" }, { "key": "id", - "description": "Layer 'Cyclestreets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images" }, { "key": "panoramax", - "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images" }, { "key": "mapillary", - "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images" }, { "key": "wikidata", - "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images" }, { "key": "wikipedia", - "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images" }, { "key": "cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" + "value": "yes", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "maxspeed", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "30" + "value": "30", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "overtaking:motor_vehicle", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "no" + "value": "no", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "bicycle_road", - "description": "Layer 'Cyclestreets' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" + "value": "yes", + "description": "bicycle_road=yes is displayed as \"This street is a bicycle road\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "bicycle_road", - "description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" + "value": "yes", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.", - "value": "" + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "maxspeed", - "description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "30" + "value": "30", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "source:maxspeed", - "description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "DE:bicycle_road" + "value": "DE:bicycle_road", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "vehicle", - "description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "no" + "value": "no", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "bicycle", - "description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "designated" + "value": "designated", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" + "value": "yes", + "description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" + "description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" + "value": "yes", + "description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "bicycle_road", - "description": "Layer 'Cyclestreets' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.", - "value": "" + "description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cyclestreets' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" + "value": "yes", + "description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "bicycle_road", - "description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "overtaking:motor_vehicle", - "description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet" }, { "key": "traffic_sign", - "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1020-30" + "value": "DE:244.1,1020-30", + "description": "traffic_sign=DE:244.1,1020-30 is displayed as \"Residents allowed\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1020-30.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12,1024-10" + "value": "DE:244.1,1022-12,1024-10", + "description": "traffic_sign=DE:244.1,1022-12,1024-10 is displayed as \"Motor vehicles allowed\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_KFZ_frei.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12" + "value": "DE:244.1,1022-12", + "description": "traffic_sign=DE:244.1,1022-12 is displayed as \"Motorcycles allowed\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1022-12.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1024-10" + "value": "DE:244.1,1024-10", + "description": "traffic_sign=DE:244.1,1024-10 is displayed as \"Cars allowed\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1024-10.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1" + "value": "DE:244.1", + "description": "traffic_sign=DE:244.1 is displayed as \"There are no supplementary signs at this bicycle road.\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244.svg" }, { "key": "cyclestreet:start_date", - "description": "Layer 'Cyclestreets' shows and asks freeform values for key 'cyclestreet:start_date' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)" + "description": "Values of `cyclestreet:start_date` are shown with \"This street will become a cyclestreet at {cyclestreet:start_date}\" and can be updated. The question is \"When will this street become a cyclestreet?\" by layers Cyclestreets, Future cyclestreet, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#future_cyclestreet" }, { "key": "proposed:cyclestreet", - "description": "The MapComplete theme Cyclestreets has a layer Future cyclestreet showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Future cyclestreet", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toekomstige_fietsstraat.md" }, { "key": "proposed:bicycle_road", - "description": "The MapComplete theme Cyclestreets has a layer Future cyclestreet showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Future cyclestreet' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "maxspeed", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "30" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "no" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "bicycle_road", - "description": "Layer 'Future cyclestreet' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "bicycle_road", - "description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "proposed:bicycle_road", - "description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.", - "value": "" - }, - { - "key": "maxspeed", - "description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "30" - }, - { - "key": "source:maxspeed", - "description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "DE:bicycle_road" - }, - { - "key": "vehicle", - "description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "no" - }, - { - "key": "bicycle", - "description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "designated" - }, - { - "key": "cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "bicycle_road", - "description": "Layer 'Future cyclestreet' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.", - "value": "" - }, - { - "key": "proposed:bicycle_road", - "description": "Layer 'Future cyclestreet' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "bicycle_road", - "description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.", - "value": "" - }, - { - "key": "proposed:bicycle_road", - "description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.", - "value": "" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.", - "value": "" - }, - { - "key": "traffic_sign", - "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1020-30" - }, - { - "key": "traffic_sign", - "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12,1024-10" - }, - { - "key": "traffic_sign", - "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12" - }, - { - "key": "traffic_sign", - "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1024-10" - }, - { - "key": "traffic_sign", - "description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1" - }, - { - "key": "cyclestreet:start_date", - "description": "Layer 'Future cyclestreet' shows and asks freeform values for key 'cyclestreet:start_date' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)" + "value": "yes", + "description": "Features with this tag are displayed by layer Future cyclestreet", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toekomstige_fietsstraat.md" }, { "key": "highway", - "description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag", - "value": "residential" + "value": "residential", + "description": "Features with this tag are displayed by layer All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/not_cyclestreets.md" }, { "key": "highway", - "description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag", - "value": "tertiary" + "value": "tertiary", + "description": "Features with this tag are displayed by layer All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/not_cyclestreets.md" }, { "key": "highway", - "description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag", - "value": "unclassified" - }, - { - "key": "id", - "description": "Layer 'All streets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "cyclestreet", - "description": "Layer 'All streets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "maxspeed", - "description": "Layer 'All streets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "30" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'All streets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "no" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'All streets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "bicycle_road", - "description": "Layer 'All streets' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "bicycle_road", - "description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "proposed:bicycle_road", - "description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.", - "value": "" - }, - { - "key": "maxspeed", - "description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "30" - }, - { - "key": "source:maxspeed", - "description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "DE:bicycle_road" - }, - { - "key": "vehicle", - "description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "no" - }, - { - "key": "bicycle", - "description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "designated" - }, - { - "key": "cyclestreet", - "description": "Layer 'All streets' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'All streets' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "cyclestreet", - "description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "bicycle_road", - "description": "Layer 'All streets' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.", - "value": "" - }, - { - "key": "proposed:bicycle_road", - "description": "Layer 'All streets' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "cyclestreet", - "description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "bicycle_road", - "description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.", - "value": "" - }, - { - "key": "proposed:bicycle_road", - "description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.", - "value": "" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.", - "value": "" - }, - { - "key": "traffic_sign", - "description": "Layer 'All streets' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1020-30" - }, - { - "key": "traffic_sign", - "description": "Layer 'All streets' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12,1024-10" - }, - { - "key": "traffic_sign", - "description": "Layer 'All streets' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12" - }, - { - "key": "traffic_sign", - "description": "Layer 'All streets' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1024-10" - }, - { - "key": "traffic_sign", - "description": "Layer 'All streets' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1" - }, - { - "key": "cyclestreet:start_date", - "description": "Layer 'All streets' shows and asks freeform values for key 'cyclestreet:start_date' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)" + "value": "unclassified", + "description": "Features with this tag are displayed by layer All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/not_cyclestreets.md" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cyclofix.json b/Docs/TagInfo/mapcomplete_cyclofix.json index 77c8341fc8..bbb3c3aa21 100644 --- a/Docs/TagInfo/mapcomplete_cyclofix.json +++ b/Docs/TagInfo/mapcomplete_cyclofix.json @@ -7,5019 +7,5897 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/cyclofix/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "repair", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Repair cafés and assisted repair workshops showing features with this tag", - "value": "assisted_self_service" + "value": "assisted_self_service", + "description": "Features with this tag are displayed by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md", + "icon_url": "gear" }, { "key": "service:bicycle:repair", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Repair cafés and assisted repair workshops showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layers Repair cafés and assisted repair workshops, Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md", + "icon_url": "gear" }, { "key": "bicycle:repair", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Repair cafés and assisted repair workshops showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md", + "icon_url": "gear" }, { "key": "id", - "description": "Layer 'Repair cafés and assisted repair workshops' 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 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bicycle pump and repair, Drinking water, Bike-related object, Bike cleaning service, Bicycle rental, Bicycle library, Bike parking, Charging stations, Vending Machines, Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bicycle pump and repair, Drinking water, Bike-related object, Bike cleaning service, Bicycle rental, Bicycle library, Bike parking, Charging stations, Vending Machines, Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#images", + "icon_url": "gear" }, { "key": "panoramax", - "description": "The layer 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bicycle pump and repair, Drinking water, Bike-related object, Bike cleaning service, Bicycle rental, Bicycle library, Bike parking, Charging stations, Vending Machines, Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#images", + "icon_url": "gear" }, { "key": "mapillary", - "description": "The layer 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bicycle pump and repair, Drinking water, Bike-related object, Bike cleaning service, Bicycle rental, Bicycle library, Bike parking, Charging stations, Vending Machines, Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#images", + "icon_url": "gear" }, { "key": "wikidata", - "description": "The layer 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bicycle pump and repair, Drinking water, Bike-related object, Bike cleaning service, Bicycle rental, Bicycle library, Bike parking, Charging stations, Vending Machines, Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#images", + "icon_url": "gear" }, { "key": "wikipedia", - "description": "The layer 'Repair cafés and assisted repair workshops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bicycle pump and repair, Drinking water, Bike-related object, Bike cleaning service, Bicycle rental, Bicycle library, Bike parking, Charging stations, Vending Machines, Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#images", + "icon_url": "gear" }, { "key": "name", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `name` are shown with \"This workshop is called {name}\" and can be updated. The question is \"What is the name of this repair workshop?\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#name", + "icon_url": "gear" }, { "key": "opening_hours", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Repair cafés and assisted repair workshops, Bike repair/shop, Drinking water, Bike-related object, Bicycle rental, Bicycle library, Bike parking, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#opening_hours_by_appointment", + "icon_url": "gear" }, { "key": "opening_hours", - "description": "Layer 'Repair cafés and assisted repair workshops' shows opening_hours=\"by appointment\" with a fixed text, namely 'Only by appointment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "\"by appointment\"" + "value": "\"by appointment\"", + "description": "opening_hours=\"by appointment\" is displayed as \"Only by appointment\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#opening_hours_by_appointment", + "icon_url": "gear" }, { "key": "opening_hours", - "description": "Layer 'Repair cafés and assisted repair workshops' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "opening_hours~^(\"by appointment\"|by appointment)$ is displayed as \"Only by appointment\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#opening_hours_by_appointment", + "icon_url": "gear" }, { "key": "opening_hours", - "description": "Layer 'Repair cafés and assisted repair workshops' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bicycle pump and repair, Drinking water, Bike-related object, Bicycle rental, Bicycle library, Bike parking, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#opening_hours_by_appointment", + "icon_url": "gear" }, { "key": "phone", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bike-related object, Bicycle rental, Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Repair cafés and assisted repair workshops' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bike-related object, Bicycle rental, Bicycle library, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bike-related object, Bicycle rental, Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Repair cafés and assisted repair workshops' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bike-related object, Bicycle rental, Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Repair cafés and assisted repair workshops' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bike-related object, Bicycle rental, Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bike-related object, Bicycle rental, Bicycle library, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Repair cafés and assisted repair workshops' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Repair cafés and assisted repair workshops, Bike cafe, Bike repair/shop, Bike-related object, Bicycle rental, Bicycle library, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:mastodon", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `contact:mastodon` are shown with \"{fediverse_link(contact:mastodon)}\" and can be updated. The question is \"What is the Mastodon-handle of {title()}?\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#mastodon", + "icon_url": "./assets/svg/mastodon.svg" }, { "key": "contact:facebook", - "description": "Layer 'Repair cafés and assisted repair workshops' shows and asks freeform values for key 'contact:facebook' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `contact:facebook` are shown with \"{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
\" and can be updated. The question is \"What is the facebook page of of {title()}?\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#facebook", + "icon_url": "gear" }, { "key": "service:mobile_phone:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:mobile_phone:repair=yes with a fixed text, namely 'Mobile phones are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:mobile_phone:repair=yes is displayed as \"Mobile phones are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#item_repair", + "icon_url": "gear" }, { "key": "service:computer:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:computer:repair=yes with a fixed text, namely 'Computers are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:computer:repair=yes is displayed as \"Computers are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#item_repair", + "icon_url": "gear" }, { "key": "service:bicycle:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:bicycle:repair=yes with a fixed text, namely 'Bicycles are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"Bicycles are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#item_repair", + "icon_url": "gear" }, { "key": "service:electronics:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:electronics:repair=yes with a fixed text, namely 'Electronic devices are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:electronics:repair=yes is displayed as \"Electronic devices are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#item_repair", + "icon_url": "./assets/layers/recycling/small_electrical_appliances.svg" }, { "key": "service:furniture:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:furniture:repair=yes with a fixed text, namely 'Furniture is repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:furniture:repair=yes is displayed as \"Furniture is repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#item_repair", + "icon_url": "./assets/layers/recycling/furniture.svg" }, { "key": "service:clothes:repair", - "description": "Layer 'Repair cafés and assisted repair workshops' shows service:clothes:repair=yes with a fixed text, namely 'Clothes are repaired here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:clothes:repair=yes is displayed as \"Clothes are repaired here\" by layer Repair cafés and assisted repair workshops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_assisted_repair_workshop.md#item_repair", + "icon_url": "./assets/layers/recycling/clothes.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cafe showing features with this tag", - "value": "pub" + "value": "pub", + "description": "Features with this tag are displayed by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cafe showing features with this tag", - "value": "bar" + "value": "bar", + "description": "Features with this tag are displayed by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cafe showing features with this tag", - "value": "cafe" + "value": "cafe", + "description": "Features with this tag are displayed by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cafe showing features with this tag", - "value": "restaurant" + "value": "restaurant", + "description": "Features with this tag are displayed by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "pub", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cafe showing features with this tag", - "value": "cycling" + "value": "cycling", + "description": "Features with this tag are displayed by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "pub", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cafe showing features with this tag", - "value": "bicycle" + "value": "bicycle", + "description": "Features with this tag are displayed by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "theme", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cafe showing features with this tag", - "value": "cycling" + "value": "cycling", + "description": "Features with this tag are displayed by layers Bike cafe, Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "theme", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cafe showing features with this tag", - "value": "bicycle" - }, - { - "key": "id", - "description": "Layer 'Bike cafe' 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 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bike cafe allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike cafe allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike cafe allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike cafe allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike cafe allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bicycle", + "description": "Features with this tag are displayed by layers Bike cafe, Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "name", - "description": "Layer 'Bike cafe' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `name` are shown with \"This bike cafe is called {name}\" and can be updated. The question is \"What is the name of this bike cafe?\" by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md#bike_cafe_name", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bike cafe' shows service:bicycle:pump=yes with a fixed text, namely 'This bike cafe offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This bike cafe offers a bike pump for anyone\" by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md#bike_cafe_bike_pump", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bike cafe' shows service:bicycle:pump=no with a fixed text, namely 'This bike cafe doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This bike cafe doesn't offer a bike pump for anyone\" by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md#bike_cafe_bike_pump", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Bike cafe' shows service:bicycle:diy=yes with a fixed text, namely 'This bike cafe offers tools for DIY repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This bike cafe offers tools for DIY repair\" by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md#bike_cafe_repair_tools", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Bike cafe' shows service:bicycle:diy=no with a fixed text, namely 'This bike cafe doesn't offer tools for DIY repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This bike cafe doesn't offer tools for DIY repair\" by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md#bike_cafe_repair_tools", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Bike cafe' shows service:bicycle:repair=yes with a fixed text, namely 'This bike cafe repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This bike cafe repairs bikes\" by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md#bike_cafe_repair_service", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Bike cafe' shows service:bicycle:repair=no with a fixed text, namely 'This bike cafe doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" - }, - { - "key": "website", - "description": "Layer 'Bike cafe' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:website", - "description": "Layer 'Bike cafe' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "phone", - "description": "Layer 'Bike cafe' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:phone", - "description": "Layer 'Bike cafe' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "email", - "description": "Layer 'Bike cafe' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:email", - "description": "Layer 'Bike cafe' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "operator:email", - "description": "Layer 'Bike cafe' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This bike cafe doesn't repair bikes\" by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md#bike_cafe_repair_service", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "opening_hours", - "description": "Layer 'Bike cafe' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike cafe' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When it this bike café opened?\" by layer Bike cafe", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cafe.md#opening_hours", + "icon_url": "./assets/layers/bike_cafe/bike_cafe.svg" }, { "key": "shop", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike repair/shop showing features with this tag", - "value": "bicycle" + "value": "bicycle", + "description": "Features with this tag are displayed by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:retail", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike repair/shop showing features with this tag", - "value": "yes" - }, - { - "key": "service:bicycle:repair", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike repair/shop showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike repair/shop showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike repair/shop showing features with this tag", - "value": "sports" + "value": "sports", + "description": "Features with this tag are displayed by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "sport", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike repair/shop showing features with this tag", - "value": "bicycle" + "value": "bicycle", + "description": "Features with this tag are displayed by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "sport", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike repair/shop showing features with this tag", - "value": "cycling" + "value": "cycling", + "description": "Features with this tag are displayed by layers Bike repair/shop, Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "sport", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike repair/shop showing features with this tag", - "value": "" - }, - { - "key": "id", - "description": "Layer 'Bike repair/shop' 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 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike repair/shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike repair/shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike repair/shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike repair/shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Features with this tag are displayed by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "name", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shops_name", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Bike repair/shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Bike repair/shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#brand", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "not:brand", - "description": "Layer 'Bike repair/shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#brand", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "second_hand", - "description": "Layer 'Bike repair/shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#second_hand", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "second_hand", - "description": "Layer 'Bike repair/shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#second_hand", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "second_hand", - "description": "Layer 'Bike repair/shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike repair/shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:website", - "description": "Layer 'Bike repair/shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "email", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:email", - "description": "Layer 'Bike repair/shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "operator:email", - "description": "Layer 'Bike repair/shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "phone", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:phone", - "description": "Layer 'Bike repair/shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#second_hand", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "payment:cash", - "description": "Layer 'Bike repair/shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Bike repair/shop, Bicycle rental, Bicycle rental, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Bike repair/shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Bike repair/shop, Bicycle rental, Bicycle rental, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Bike repair/shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Bike repair/shop, Bicycle rental, Bicycle rental, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "level", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Bike repair/shop, Bicycle pump and repair, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#single_level", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "location", - "description": "Layer 'Bike repair/shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Bike repair/shop, Bicycle pump and repair, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#single_level", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "level", - "description": "Layer 'Bike repair/shop' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Bike repair/shop, Bicycle pump and repair, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#single_level", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "level", - "description": "Layer 'Bike repair/shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Bike repair/shop, Bicycle pump and repair, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#single_level", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "level", - "description": "Layer 'Bike repair/shop' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Bike repair/shop, Bicycle pump and repair, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#single_level", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "level", - "description": "Layer 'Bike repair/shop' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Bike repair/shop, Bicycle pump and repair, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#single_level", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Bike repair/shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#copyshop_print_sizes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Bike repair/shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#copyshop_print_sizes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Bike repair/shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#copyshop_print_sizes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Bike repair/shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#copyshop_print_sizes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Bike repair/shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#copyshop_print_sizes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:binding", - "description": "Layer 'Bike repair/shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#copyshop_binding", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:binding", - "description": "Layer 'Bike repair/shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#copyshop_binding", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "healthcare", - "description": "Layer 'Bike repair/shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#optometrist_service", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "healthcare", - "description": "Layer 'Bike repair/shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#optometrist_service", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "craft", - "description": "Layer 'Bike repair/shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Bike repair/shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Bike repair/shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#key_cutter", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Bike repair/shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#key_cutter", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Bike repair/shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#sells_new_bikes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Bike repair/shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#sells_new_bikes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_second_hand", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_second_hand", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_second_hand", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#repairs_bikes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#repairs_bikes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#repairs_bikes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#repairs_bikes", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Bike repair/shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_rental", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Bike repair/shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_rental", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "rental", - "description": "Layer 'Bike repair/shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bicycle_types", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#rental_capacity_ebike", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#rental_capacity_bmx", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#rental_capacity_mtb", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layers Bike repair/shop, Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_pump_service", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_pump_service", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_pump_service", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_repair_tools", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_repair_tools", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_repair_tools", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_wash", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_wash", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_wash", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layers Bike repair/shop, Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layers Bike repair/shop, Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layers Bike repair/shop, Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layers Bike repair/shop, Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "internet_access", - "description": "Layer 'Bike repair/shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Bike repair/shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Bike repair/shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "internet_access", - "description": "Layer 'Bike repair/shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Bike repair/shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "internet_access", - "description": "Layer 'Bike repair/shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Bike repair/shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet_fee", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Bike repair/shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet_fee", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Bike repair/shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet_fee", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet_ssid", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Bike repair/shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#internet_ssid", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "organic", - "description": "Layer 'Bike repair/shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#organic", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "organic", - "description": "Layer 'Bike repair/shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#organic", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "organic", - "description": "Layer 'Bike repair/shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#organic", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Bike repair/shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#sugar_free", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Bike repair/shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#sugar_free", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Bike repair/shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#sugar_free", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Bike repair/shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#sugar_free", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Bike repair/shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Bike repair/shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Bike repair/shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#gluten_free", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Bike repair/shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#gluten_free", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Bike repair/shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Bike repair/shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Bike repair/shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#lactose_free", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Bike repair/shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#lactose_free", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "dog", - "description": "Layer 'Bike repair/shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Bike repair/shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Bike repair/shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Bike repair/shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Bike repair/shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "description", - "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layers Bike repair/shop, Bike-related object, Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#description", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle pump and repair showing features with this tag", - "value": "bicycle_repair_station" - }, - { - "key": "id", - "description": "Layer 'Bicycle pump and repair' 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 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle pump and repair allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bicycle_repair_station", + "description": "Features with this tag are displayed by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no & service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "service:bicycle:tools=no & service:bicycle:pump=yes is displayed as \"There is only a pump present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no & service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:tools=no & service:bicycle:pump=yes is displayed as \"There is only a pump present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes & service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers, …) present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:tools=yes & service:bicycle:pump=no is displayed as \"There are only tools (screwdrivers, pliers, …) present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes & service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers, …) present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "service:bicycle:tools=yes & service:bicycle:pump=no is displayed as \"There are only tools (screwdrivers, pliers, …) present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes & service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:tools=yes & service:bicycle:pump=yes is displayed as \"There are both tools and a pump present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes & service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:tools=yes & service:bicycle:pump=yes is displayed as \"There are both tools and a pump present\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_available_services", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump:operational_status", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=broken with a fixed text, namely 'The bike pump is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump=yes)", - "value": "broken" + "value": "broken", + "description": "service:bicycle:pump:operational_status=broken is displayed as \"The bike pump is broken\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#Operational_status", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:pump:operational_status", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=operational with a fixed text, namely 'The bike pump is operational' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump=yes)", - "value": "operational" + "value": "operational", + "description": "service:bicycle:pump:operational_status=operational is displayed as \"The bike pump is operational\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#Operational_status", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this bicycle repair point open?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#opening_hours_24_7", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "opening_hours", - "description": "Layer 'Bicycle pump and repair' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Bicycle pump and repair' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layers Bicycle pump and repair, Drinking water, Bike parking, Charging stations, Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Publicly accessible\" by layers Bicycle pump and repair, Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=public with a fixed text, namely 'Publicly accessible' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Publicly accessible\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=customers with a fixed text, namely 'Only for customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only for customers\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=private with a fixed text, namely 'Not accessible to the general public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Not accessible to the general public\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/svg/invalid.svg" }, { "key": "access", - "description": "Layer 'Bicycle pump and repair' shows access=no with a fixed text, namely 'Not accessible to the general public' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible to the general public\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#access", + "icon_url": "./assets/svg/invalid.svg" }, { "key": "operator", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `operator` are shown with \"Maintained by {operator}\" and can be updated. The question is \"Who maintains this cycle pump?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_operator", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "email", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of the maintainer?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_email", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "phone", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `phone` are shown with \"{phone}\" and can be updated. The question is \"What is the phone number of the maintainer?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_phone", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:chain_tool", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=yes with a fixed text, namely 'There is a chain tool' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:tools=yes)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:chain_tool=yes is displayed as \"There is a chain tool\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_bike_chain_tool", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:chain_tool", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=no with a fixed text, namely 'There is no chain tool' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:tools=yes)", - "value": "no" + "value": "no", + "description": "service:bicycle:chain_tool=no is displayed as \"There is no chain tool\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_bike_chain_tool", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:stand", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=yes with a fixed text, namely 'There is a hook or stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:tools=yes)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:stand=yes is displayed as \"There is a hook or stand\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_bike_stand", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "service:bicycle:stand", - "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=no with a fixed text, namely 'There is no hook or stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:tools=yes)", - "value": "no" + "value": "no", + "description": "service:bicycle:stand=no is displayed as \"There is no hook or stand\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_bike_stand", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'valves' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `valves` are shown with \"This pump supports the following valves: {valves}\" and can be updated. The question is \"What valves are supported?\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_valves", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=sclaverand with a fixed text, namely 'Sclaverand/Presta (narrow-width bike tires)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "sclaverand" + "value": "sclaverand", + "description": "valves=sclaverand is displayed as \"Sclaverand/Presta (narrow-width bike tires)\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_valves", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=dunlop with a fixed text, namely 'Dunlop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "dunlop" + "value": "dunlop", + "description": "valves=dunlop is displayed as \"Dunlop\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_valves", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "valves", - "description": "Layer 'Bicycle pump and repair' shows valves=schrader with a fixed text, namely 'Schrader (cars and mountainbikes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "schrader" + "value": "schrader", + "description": "valves=schrader is displayed as \"Schrader (cars and mountainbikes)\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_valves", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manual", - "description": "Layer 'Bicycle pump and repair' shows manual=yes with a fixed text, namely 'Manual pump' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump=yes)", - "value": "yes" + "value": "yes", + "description": "manual=yes is displayed as \"Manual pump\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_electrical_pump", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manual", - "description": "Layer 'Bicycle pump and repair' shows manual=no with a fixed text, namely 'Electrical pump' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump=yes)", - "value": "no" + "value": "no", + "description": "manual=no is displayed as \"Electrical pump\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_electrical_pump", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manometer", - "description": "Layer 'Bicycle pump and repair' shows manometer=yes with a fixed text, namely 'There is a manometer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump=yes)", - "value": "yes" + "value": "yes", + "description": "manometer=yes is displayed as \"There is a manometer\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_manometer", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manometer", - "description": "Layer 'Bicycle pump and repair' shows manometer=no with a fixed text, namely 'There is no manometer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump=yes)", - "value": "no" + "value": "no", + "description": "manometer=no is displayed as \"There is no manometer\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_manometer", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "manometer", - "description": "Layer 'Bicycle pump and repair' shows manometer=broken with a fixed text, namely 'There is manometer but it is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if service:bicycle:pump=yes)", - "value": "broken" - }, - { - "key": "level", - "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Bicycle pump and repair' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Bicycle pump and repair' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Bicycle pump and repair' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Bicycle pump and repair' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Bicycle pump and repair' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "-1" + "value": "broken", + "description": "manometer=broken is displayed as \"There is manometer but it is broken\" by layer Bicycle pump and repair", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_repair_station.md#bike_repair_station_manometer", + "icon_url": "./assets/layers/bike_repair_station/repair_station.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Drinking water showing features with this tag", - "value": "drinking_water" + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "drinking_water", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Drinking water showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Drinking water showing features with this tag", - "value": "drinking_water" - }, - { - "key": "id", - "description": "Layer 'Drinking water' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `operational_status` are shown with \"The operational status is {operational_status}\" and can be updated. The question is \"Is this drinking water spot still operational?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This drinking water is broken\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This drinking water is closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "Layer 'Drinking water' shows disused:amenity=drinking_water with a fixed text, namely 'This drinking water is permanently closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "drinking_water" + "value": "drinking_water", + "description": "disused:amenity=drinking_water is displayed as \"This drinking water is permanently closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fee", - "description": "Layer 'Drinking water' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layers Drinking water, Bike parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fee", - "description": "Layer 'Drinking water' shows fee=yes with a fixed text, namely 'One needs to pay to use this drinking water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"One needs to pay to use this drinking water point\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bubbler with a fixed text, namely 'This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bubbler" + "value": "bubbler", + "description": "fountain=bubbler is displayed as \"This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bubbler.svg" }, { "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bottle_refill with a fixed text, namely 'This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bottle_refill" + "value": "bottle_refill", + "description": "fountain=bottle_refill is displayed as \"This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bottle.svg" }, { "key": "man_made", - "description": "Layer 'Drinking water' shows man_made=water_tap with a fixed text, namely 'This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "water_tap" + "value": "water_tap", + "description": "man_made=water_tap is displayed as \"This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/tap.svg" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fountain!=bottle_refill)", - "value": "yes" + "value": "yes", + "description": "bottle=yes is displayed as \"It is easy to refill water bottles\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fountain!=bottle_refill)", - "value": "no" + "value": "no", + "description": "bottle=no is displayed as \"Water bottles may not fit\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "iced_water", - "description": "Layer 'Drinking water' shows iced_water=yes with a fixed text, namely 'Ice-cold water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "iced_water=yes is displayed as \"Ice-cold water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "cold_water", - "description": "Layer 'Drinking water' shows cold_water=yes with a fixed text, namely 'Actively cooled water is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "cold_water=yes is displayed as \"Actively cooled water is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "room_temperature_water", - "description": "Layer 'Drinking water' shows room_temperature_water=yes with a fixed text, namely 'Ambient temperature water (without active cooling or heating) is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "room_temperature_water=yes is displayed as \"Ambient temperature water (without active cooling or heating) is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "warm_water", - "description": "Layer 'Drinking water' shows warm_water=yes with a fixed text, namely 'Warmed water is provided here; the water is not dangerously hot' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "warm_water=yes is displayed as \"Warmed water is provided here; the water is not dangerously hot\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "hot_water", - "description": "Layer 'Drinking water' shows hot_water=yes with a fixed text, namely 'Hot water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "hot_water=yes is displayed as \"Hot water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "seasonal=no is displayed as \"Available all around the year\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "summer" + "value": "summer", + "description": "seasonal=summer is displayed as \"Only available in summer\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "spring;summer;autumn" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "value": "spring;summer;autumn", + "description": "seasonal=spring;summer;autumn is displayed as \"Closed during the winter\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/no_winter.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) with a fixed text, namely 'This drinking water fountain is closed this season. As such, the opening hours are not shown.' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "description": "seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) is displayed as \"This drinking water fountain is closed this season. As such, the opening hours are not shown.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "tourism", - "description": "Layer 'Drinking water' shows tourism=artwork with a fixed text, namely 'This drinking water point has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This drinking water point has an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Drinking water' shows not:tourism:artwork=yes with a fixed text, namely 'This drinking water point does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This drinking water point does not have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "tourism", - "description": "Layer 'Drinking water' shows tourism= with a fixed text, namely 'This drinking water point probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key tourism.", - "value": "" + "description": "tourism= is displayed as \"This drinking water point probably doesn't have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_wikidata", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artist_name", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_name", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "website", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_website", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if tourism=artwork)" - }, - { - "key": "theme", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "bicycle" - }, - { - "key": "theme", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "cycling" - }, - { - "key": "sport", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "cycling" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_subject", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "association", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "cycling" + "value": "cycling", + "description": "Features with this tag are displayed by layer Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_themed_object.md", + "icon_url": "./assets/layers/bike_themed_object/other_services.svg" }, { "key": "association", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "bicycle" + "value": "bicycle", + "description": "Features with this tag are displayed by layer Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_themed_object.md", + "icon_url": "./assets/layers/bike_themed_object/other_services.svg" }, { "key": "ngo", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "cycling" + "value": "cycling", + "description": "Features with this tag are displayed by layer Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_themed_object.md", + "icon_url": "./assets/layers/bike_themed_object/other_services.svg" }, { "key": "ngo", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "bicycle" + "value": "bicycle", + "description": "Features with this tag are displayed by layer Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_themed_object.md", + "icon_url": "./assets/layers/bike_themed_object/other_services.svg" }, { "key": "club", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "bicycle" + "value": "bicycle", + "description": "Features with this tag are displayed by layer Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_themed_object.md", + "icon_url": "./assets/layers/bike_themed_object/other_services.svg" }, { "key": "club", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike-related object showing features with this tag", - "value": "cycling" - }, - { - "key": "id", - "description": "Layer 'Bike-related object' 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 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bike-related object allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike-related object allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike-related object allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike-related object allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike-related object allows to upload images and adds them under the 'panoramax'-tag (and 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": "description", - "description": "Layer 'Bike-related object' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "website", - "description": "Layer 'Bike-related object' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:website", - "description": "Layer 'Bike-related object' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "email", - "description": "Layer 'Bike-related object' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:email", - "description": "Layer 'Bike-related object' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "operator:email", - "description": "Layer 'Bike-related object' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "phone", - "description": "Layer 'Bike-related object' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:phone", - "description": "Layer 'Bike-related object' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike-related object' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike-related object' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "value": "cycling", + "description": "Features with this tag are displayed by layer Bike-related object", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_themed_object.md", + "icon_url": "./assets/layers/bike_themed_object/other_services.svg" }, { "key": "service:bicycle:cleaning", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cleaning service showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "service:bicycle:cleaning", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cleaning service showing features with this tag", - "value": "diy" + "value": "diy", + "description": "Features with this tag are displayed by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike cleaning service showing features with this tag", - "value": "bicycle_wash" - }, - { - "key": "id", - "description": "Layer 'Bike cleaning service' 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 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike cleaning service allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike cleaning service allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike cleaning service allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bike cleaning service allows to upload images and adds them under the 'panoramax'-tag (and 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": "service:bicycle:cleaning:charge", - "description": "Layer 'Bike cleaning service' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" - }, - { - "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" - }, - { - "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" - }, - { - "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" + "value": "bicycle_wash", + "description": "Features with this tag are displayed by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "charge", - "description": "Layer 'Bike cleaning service' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_wash)" + "description": "Values of `charge` are shown with \"Using the cleaning service costs {charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md#bike_cleaning_charge", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "fee", - "description": "Layer 'Bike cleaning service' shows fee=no with a fixed text, namely 'This cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_wash)", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"This cleaning service is free to use\" by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md#bike_cleaning_charge", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "fee", - "description": "Layer 'Bike cleaning service' shows fee=yes with a fixed text, namely 'There is a fee to use this cleaning service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_wash)", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"There is a fee to use this cleaning service\" by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md#bike_cleaning_charge", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "automated", - "description": "Layer 'Bike cleaning service' shows automated=no with a fixed text, namely 'This is a manual bike washing station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_wash)", - "value": "no" + "value": "no", + "description": "automated=no is displayed as \"This is a manual bike washing station\" by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md#automated", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "automated", - "description": "Layer 'Bike cleaning service' shows automated=yes with a fixed text, namely 'This is an automated bike wash' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_wash)", - "value": "yes" + "value": "yes", + "description": "automated=yes is displayed as \"This is an automated bike wash\" by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md#automated", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "self_service", - "description": "Layer 'Bike cleaning service' shows self_service=yes with a fixed text, namely 'This cleaning service is self-service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_wash)", - "value": "yes" + "value": "yes", + "description": "self_service=yes is displayed as \"This cleaning service is self-service\" by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md#self_service", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "self_service", - "description": "Layer 'Bike cleaning service' shows self_service=no with a fixed text, namely 'This cleaning service is operated by an employee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_wash)", - "value": "no" + "value": "no", + "description": "self_service=no is displayed as \"This cleaning service is operated by an employee\" by layer Bike cleaning service", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_cleaning.md#self_service", + "icon_url": "./assets/layers/bike_cleaning/bike_cleaning.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle rental showing features with this tag", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "Features with this tag are displayed by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "bicycle_rental", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle rental showing features with this tag" + "description": "Features with this tag are displayed by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "service:bicycle:rental", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle rental showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "rental", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle rental showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Bicycle rental' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Features with this tag are displayed by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "shop", - "description": "Layer 'Bicycle rental' shows shop=rental & bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_rental)", - "value": "rental" + "value": "rental", + "description": "shop=rental & bicycle_rental=shop is displayed as \"This is a shop whose main focus is bicycle rental\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#bicycle_rental_type", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows shop=rental & bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_rental)", - "value": "shop" + "value": "shop", + "description": "shop=rental & bicycle_rental=shop is displayed as \"This is a shop whose main focus is bicycle rental\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#bicycle_rental_type", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "shop", - "description": "Layer 'Bicycle rental' shows shop=rental with a fixed text, namely 'This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_rental)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#bicycle_rental_type", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes & shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes & shop=bicycle is displayed as \"This is a shop which sells or repairs bicycles, but also rents out bicycles\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#bicycle_rental_type", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "shop", - "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes & shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_rental)", - "value": "bicycle" + "value": "bicycle", + "description": "service:bicycle:rental=yes & shop=bicycle is displayed as \"This is a shop which sells or repairs bicycles, but also rents out bicycles\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#bicycle_rental_type", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked to a structure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_rental)", - "value": "docking_station" + "value": "docking_station", + "description": "bicycle_rental=docking_station is displayed as \"This is an automated docking station, where a bicycle is mechanically locked to a structure\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#bicycle_rental_type", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_rental)", - "value": "key_dispensing_machine" + "value": "key_dispensing_machine", + "description": "bicycle_rental=key_dispensing_machine is displayed as \"A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#bicycle_rental_type", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "bicycle_rental", - "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if amenity=bicycle_rental)", - "value": "dropoff_point" - }, - { - "key": "website", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:website", - "description": "Layer 'Bicycle rental' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "email", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:email", - "description": "Layer 'Bicycle rental' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "operator:email", - "description": "Layer 'Bicycle rental' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "phone", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:phone", - "description": "Layer 'Bicycle rental' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~.+ | opening_hours~.+)" - }, - { - "key": "opening_hours", - "description": "Layer 'Bicycle rental' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~.+ | opening_hours~.+)", - "value": "closed" - }, - { - "key": "payment:cash", - "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~.+)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~.+)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Bicycle rental' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop~.+)", - "value": "yes" - }, - { - "key": "payment:cash", - "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Bicycle rental' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=)", - "value": "yes" + "value": "dropoff_point", + "description": "bicycle_rental=dropoff_point is displayed as \"This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only\" by layer Bicycle rental", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#bicycle_rental_type", + "icon_url": "./assets/themes/cyclofix/key.svg" }, { "key": "payment:app", - "description": "Layer 'Bicycle rental' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=)", - "value": "yes" + "value": "yes", + "description": "payment:app=yes is displayed as \"Payment is done using a dedicated app\" by layers Bicycle rental, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#payment_options_advanced", + "icon_url": "./assets/layers/questions/smartphone.svg" }, { "key": "payment:membership_card", - "description": "Layer 'Bicycle rental' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if shop=)", - "value": "yes" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "city_bike" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "ebike" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bmx" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "mtb" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "kid_bike" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "tandem" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "racebike" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bike_helmet" - }, - { - "key": "rental", - "description": "Layer 'Bicycle rental' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "cargo_bike" - }, - { - "key": "capacity:city_bike", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*city_bike.*)$)" - }, - { - "key": "capacity:ebike", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*ebike.*)$)" - }, - { - "key": "capacity:kid_bike", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*kid_bike.*)$)" - }, - { - "key": "capacity:bmx", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*bmx.*)$)" - }, - { - "key": "capacity:mtb", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*mtb.*)$)" - }, - { - "key": "capacity:bicycle_pannier", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*bicycle_pannier.*)$)" - }, - { - "key": "capacity:tandem_bicycle", - "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if rental~^(.*tandem_bicycle.*)$)" + "value": "yes", + "description": "payment:membership_card=yes is displayed as \"Payment is done using a membership card\" by layers Bicycle rental, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental_non_docking.md#payment_options_advanced", + "icon_url": "./assets/layers/questions/nfc_card.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle library showing features with this tag", - "value": "bicycle_library" - }, - { - "key": "id", - "description": "Layer 'Bicycle library' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bicycle_library", + "description": "Features with this tag are displayed by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "name", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "website", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:website", - "description": "Layer 'Bicycle library' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "phone", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:phone", - "description": "Layer 'Bicycle library' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "email", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:email", - "description": "Layer 'Bicycle library' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "operator:email", - "description": "Layer 'Bicycle library' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bicycle library' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "description": "Values of `name` are shown with \"This bicycle library is called {name}\" and can be updated. The question is \"What is the name of this bicycle library?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_name", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `charge` are shown with \"Lending a bicycle costs {charge}\" and can be updated. The question is \"How much does lending a bicycle cost?\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "fee", - "description": "Layer 'Bicycle library' shows fee=no & charge= with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "fee=no & charge= is displayed as \"Lending a bicycle is free\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows fee=no & charge= with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & charge= is displayed as \"Lending a bicycle is free\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "fee", - "description": "Layer 'Bicycle library' shows fee=yes & charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "fee=yes & charge=€20warranty + €20/year is displayed as \"Lending a bicycle costs €20/year and €20 warranty\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows fee=yes & charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "€20warranty + €20/year" + "value": "€20warranty + €20/year", + "description": "fee=yes & charge=€20warranty + €20/year is displayed as \"Lending a bicycle costs €20/year and €20 warranty\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=child with a fixed text, namely 'Bikes for children available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "child" + "value": "child", + "description": "bicycle_library:for=child is displayed as \"Bikes for children available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=adult with a fixed text, namely 'Bikes for adult available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "adult" + "value": "adult", + "description": "bicycle_library:for=adult is displayed as \"Bikes for adult available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "bicycle_library:for", - "description": "Layer 'Bicycle library' shows bicycle_library:for=disabled with a fixed text, namely 'Bikes for disabled persons available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "disabled" - }, - { - "key": "description", - "description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "value": "disabled", + "description": "bicycle_library:for=disabled is displayed as \"Bikes for disabled persons available\" by layer Bicycle library", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group", + "icon_url": "./assets/layers/bicycle_library/bicycle_library.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bike parking showing features with this tag", - "value": "bicycle_parking" - }, - { - "key": "id", - "description": "Layer 'Bike parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bicycle_parking", + "description": "Features with this tag are displayed by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'bicycle_parking' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `bicycle_parking` are shown with \"This is a bicycle parking of the type: {bicycle_parking}\" and can be updated. The question is \"What is the type of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=stands with a fixed text, namely 'Stands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "stands" + "value": "stands", + "description": "bicycle_parking=stands is displayed as \"Stands\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/staple.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=safe_loops with a fixed text, namely 'Rack with side loops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "safe_loops" + "value": "safe_loops", + "description": "bicycle_parking=safe_loops is displayed as \"Rack with side loops\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/safe_loops.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=wall_loops with a fixed text, namely 'Wheelbenders / rack' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "wall_loops" + "value": "wall_loops", + "description": "bicycle_parking=wall_loops is displayed as \"Wheelbenders / rack\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/wall_loops.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=handlebar_holder with a fixed text, namely 'Handlebar holder' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "handlebar_holder" + "value": "handlebar_holder", + "description": "bicycle_parking=handlebar_holder is displayed as \"Handlebar holder\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/handlebar_holder.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=rack with a fixed text, namely 'Rack' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "rack" + "value": "rack", + "description": "bicycle_parking=rack is displayed as \"Rack\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/rack.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=two_tier with a fixed text, namely 'Two-tiered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "two_tier" + "value": "two_tier", + "description": "bicycle_parking=two_tier is displayed as \"Two-tiered\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/two_tier.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=shed with a fixed text, namely 'Shed' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "shed" + "value": "shed", + "description": "bicycle_parking=shed is displayed as \"Shed\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/shed.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=bollard with a fixed text, namely 'Bollard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bollard" + "value": "bollard", + "description": "bicycle_parking=bollard is displayed as \"Bollard\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/bollard.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=floor with a fixed text, namely 'An area on the floor which is marked for bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "floor" + "value": "floor", + "description": "bicycle_parking=floor is displayed as \"An area on the floor which is marked for bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=lockers with a fixed text, namely 'A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "lockers" + "value": "lockers", + "description": "bicycle_parking=lockers is displayed as \"A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=lean_and_stick with a fixed text, namely 'A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "lean_and_stick" + "value": "lean_and_stick", + "description": "bicycle_parking=lean_and_stick is displayed as \"A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=underground with a fixed text, namely 'Underground parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Underground parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=surface with a fixed text, namely 'Surface level parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "surface" + "value": "surface", + "description": "location=surface is displayed as \"Surface level parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=rooftop with a fixed text, namely 'Rooftop parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "rooftop" + "value": "rooftop", + "description": "location=rooftop is displayed as \"Rooftop parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location= with a fixed text, namely 'Surface level parking' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key location.", - "value": "" + "description": "location= is displayed as \"Surface level parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "building", - "description": "Layer 'Bike parking' shows building=bicycle_shed with a fixed text, namely 'This is a bicycle shed (with walls on at least three sides)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "bicycle_shed" + "value": "bicycle_shed", + "description": "building=bicycle_shed is displayed as \"This is a bicycle shed (with walls on at least three sides)\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "building", - "description": "Layer 'Bike parking' shows building=roof with a fixed text, namely 'This is a bicycle parking under a roof; the roof only serves the bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "roof" + "value": "roof", + "description": "building=roof is displayed as \"This is a bicycle parking under a roof; the roof only serves the bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "indoor", - "description": "Layer 'Bike parking' shows indoor=yes with a fixed text, namely 'This bicycle parking is located in a building behind a door or gate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This bicycle parking is located in a building behind a door or gate\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "indoor", - "description": "Layer 'Bike parking' shows indoor=no & covered=yes with a fixed text, namely 'This bicycle parking is under (a part of) a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "no" + "value": "no", + "description": "indoor=no & covered=yes is displayed as \"This bicycle parking is under (a part of) a building\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows indoor=no & covered=yes with a fixed text, namely 'This bicycle parking is under (a part of) a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "indoor=no & covered=yes is displayed as \"This bicycle parking is under (a part of) a building\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows covered=yes with a fixed text, namely 'This parking is covered (it has a roof)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "covered=yes is displayed as \"This parking is covered (it has a roof)\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows covered=no with a fixed text, namely 'This parking is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "no" + "value": "no", + "description": "covered=no is displayed as \"This parking is not covered\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "capacity", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `capacity` are shown with \"Place for {capacity} bikes\" and can be updated. The question is \"How many bicycles fit in this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Capacity", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `access` are shown with \"{access}\" and can be updated. The question is \"Who can use this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "customers", + "description": "access=customers is displayed as \"Access is primarily for visitors to a business\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=customers with a fixed text, namely 'Access is primarily for visitors to a business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "customers" + "value": "members", + "description": "access=members is displayed as \"Access is limited to members of a school, company or organisation\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=members with a fixed text, namely 'Access is limited to members of a school, company or organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "members" - }, - { - "key": "access", - "description": "Layer 'Bike parking' shows access=private with a fixed text, namely 'Private bicycle parking which is never available to the public, also not via a membership fee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Private bicycle parking which is never available to the public, also not via a membership fee\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "fee", - "description": "Layer 'Bike parking' shows fee=yes with a fixed text, namely 'One has to pay to use this bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" - }, - { - "key": "fee", - "description": "Layer 'Bike parking' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "yes", + "description": "fee=yes is displayed as \"One has to pay to use this bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#fee", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "charge", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=yes)" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike parking' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike parking' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "description": "Values of `charge` are shown with \"Parking your bike costs {charge}\" and can be updated. The question is \"How much does it cost to park your bike here?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#charge", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "operator", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `operator` are shown with \"This bicycle parking is maintained by {operator}\" and can be updated. The question is \"Who maintains this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "operator:phone", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `operator:phone` are shown with \"{operator:phone}\" and can be updated. The question is \"What is the phone number of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "phone", - "description": "Layer 'Bike parking' shows phone~.+ with a fixed text, namely '{phone}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "phone~.+ is displayed as \"{phone}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Bike parking' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "contact:phone~.+ is displayed as \"{contact:phone}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "operator:website", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `operator:website` are shown with \"{operator:website}\" and can be updated. The question is \"What is the website number of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "website", - "description": "Layer 'Bike parking' shows website~.+ with a fixed text, namely '{website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "website~.+ is displayed as \"{website}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Bike parking' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "operator:email", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `operator:email` are shown with \"{operator:email}\" and can be updated. The question is \"What is the email address of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=yes with a fixed text, namely 'This parking has room for cargo bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "cargo_bike=yes is displayed as \"This parking has room for cargo bikes\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=designated with a fixed text, namely 'This parking has designated (official) spots for cargo bikes.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "designated" + "value": "designated", + "description": "cargo_bike=designated is displayed as \"This parking has designated (official) spots for cargo bikes.\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'You're not allowed to park cargo bikes or there are no places provided for cargo bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "cargo_bike=no is displayed as \"You're not allowed to park cargo bikes or there are no places provided for cargo bikes\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "capacity:cargo_bike", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)" + "description": "Values of `capacity:cargo_bike` are shown with \"This parking fits {capacity:cargo_bike} cargo bikes\" and can be updated. The question is \"How many cargo bicycles fit in this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_capacity_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)", - "value": "no" + "value": "no", + "description": "cargo_bike=no is displayed as \"There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_capacity_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `maxstay` are shown with \"A bike can be parked here for at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum allowed parking duration?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#maxstay", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "bicycle", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Charging stations showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Charging stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "yes", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "bicycle", - "description": "Layer 'Charging stations' shows bicycle=yes with a fixed text, namely 'Bicycles can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"Bicycles can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "motorcar", - "description": "Layer 'Charging stations' shows motorcar=yes with a fixed text, namely 'Cars can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "motorcar=yes is displayed as \"Cars can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "scooter", - "description": "Layer 'Charging stations' shows scooter=yes with a fixed text, namely 'Scooters can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "scooter=yes is displayed as \"Scooters can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "hgv", - "description": "Layer 'Charging stations' shows hgv=yes with a fixed text, namely 'Heavy good vehicles (such as trucks) can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "hgv=yes is displayed as \"Heavy good vehicles (such as trucks) can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "bus", - "description": "Layer 'Charging stations' shows bus=yes with a fixed text, namely 'Buses can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "bus=yes is displayed as \"Buses can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Who is allowed to use this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=yes with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Anyone can use this charging station (payment might be needed)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Anyone can use this charging station (payment might be needed)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=customers with a fixed text, namely 'Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=key with a fixed text, namely 'A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, ...)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Not accessible to the general public (e.g. only accessible to the owners, employees, ...)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=permissive with a fixed text, namely 'This charging station is accessible to the public during certain hours or conditions. Restrictions might apply, but general use is allowed.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "permissive" + "value": "permissive", + "description": "access=permissive is displayed as \"This charging station is accessible to the public during certain hours or conditions. Restrictions might apply, but general use is allowed.\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "capacity", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `capacity` are shown with \"{capacity} vehicles can be charged here at the same time\" and can be updated. The question is \"How much vehicles can be charged here at the same time?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#capacity", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows socket:schuko=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:schuko=1 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows socket:schuko~.+ & socket:schuko!=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:schuko~.+ & socket:schuko!=1 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows socket:typee=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:typee=1 is displayed as \"European wall plug with ground pin (CEE7/4 type E)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows socket:typee~.+ & socket:typee!=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:typee~.+ & socket:typee!=1 is displayed as \"European wall plug with ground pin (CEE7/4 type E)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows socket:chademo=1 with a fixed text, namely 'Chademo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:chademo=1 is displayed as \"Chademo\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows socket:chademo~.+ & socket:chademo!=1 with a fixed text, namely 'Chademo' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:chademo~.+ & socket:chademo!=1 is displayed as \"Chademo\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows socket:type1_cable=1 with a fixed text, namely 'Type 1 with cable (J1772)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:type1_cable=1 is displayed as \"Type 1 with cable (J1772)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows socket:type1_cable~.+ & socket:type1_cable!=1 with a fixed text, namely 'Type 1 with cable (J1772)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:type1_cable~.+ & socket:type1_cable!=1 is displayed as \"Type 1 with cable (J1772)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows socket:type1=1 with a fixed text, namely 'Type 1 without cable (J1772)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:type1=1 is displayed as \"Type 1 without cable (J1772)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows socket:type1~.+ & socket:type1!=1 with a fixed text, namely 'Type 1 without cable (J1772)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:type1~.+ & socket:type1!=1 is displayed as \"Type 1 without cable (J1772)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows socket:type1_combo=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:type1_combo=1 is displayed as \"Type 1 CCS (aka Type 1 Combo)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows socket:type1_combo~.+ & socket:type1_combo!=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:type1_combo~.+ & socket:type1_combo!=1 is displayed as \"Type 1 CCS (aka Type 1 Combo)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger=1 with a fixed text, namely 'Tesla Supercharger' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:tesla_supercharger=1 is displayed as \"Tesla Supercharger\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger~.+ & socket:tesla_supercharger!=1 with a fixed text, namely 'Tesla Supercharger' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:tesla_supercharger~.+ & socket:tesla_supercharger!=1 is displayed as \"Tesla Supercharger\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows socket:type2=1 with a fixed text, namely 'Type 2 (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:type2=1 is displayed as \"Type 2 (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows socket:type2~.+ & socket:type2!=1 with a fixed text, namely 'Type 2 (mennekes)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:type2~.+ & socket:type2!=1 is displayed as \"Type 2 (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows socket:type2_combo=1 with a fixed text, namely 'Type 2 CCS (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:type2_combo=1 is displayed as \"Type 2 CCS (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows socket:type2_combo~.+ & socket:type2_combo!=1 with a fixed text, namely 'Type 2 CCS (mennekes)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:type2_combo~.+ & socket:type2_combo!=1 is displayed as \"Type 2 CCS (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows socket:type2_cable=1 with a fixed text, namely 'Type 2 with cable (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:type2_cable=1 is displayed as \"Type 2 with cable (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows socket:type2_cable~.+ & socket:type2_cable!=1 with a fixed text, namely 'Type 2 with cable (mennekes)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:type2_cable~.+ & socket:type2_cable!=1 is displayed as \"Type 2 with cable (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:tesla_supercharger_ccs=1 is displayed as \"Tesla Supercharger CCS (a branded type2_css)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=1 is displayed as \"Tesla Supercharger CCS (a branded type2_css)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla Supercharger (destination)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:tesla_destination=1 is displayed as \"Tesla Supercharger (destination)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country=us is displayed as \"Tesla Supercharger (destination)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:tesla_destination=1 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country!=us with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country!=us is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows socket:USB-A=1 with a fixed text, namely 'USB to charge phones and small electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:USB-A=1 is displayed as \"USB to charge phones and small electronics\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows socket:USB-A~.+ & socket:USB-A!=1 with a fixed text, namely 'USB to charge phones and small electronics' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:USB-A~.+ & socket:USB-A!=1 is displayed as \"USB to charge phones and small electronics\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows socket:bosch_3pin=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:bosch_3pin=1 is displayed as \"Bosch Active Connect with 3 pins and cable\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows socket:bosch_3pin~.+ & socket:bosch_3pin!=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:bosch_3pin~.+ & socket:bosch_3pin!=1 is displayed as \"Bosch Active Connect with 3 pins and cable\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows socket:bosch_5pin=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:bosch_5pin=1 is displayed as \"Bosch Active Connect with 5 pins and cable\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows socket:bosch_5pin~.+ & socket:bosch_5pin!=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:bosch_5pin~.+ & socket:bosch_5pin!=1 is displayed as \"Bosch Active Connect with 5 pins and cable\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows socket:bs1363=1 with a fixed text, namely 'BS1363 (Type G)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:bs1363=1 is displayed as \"BS1363 (Type G)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows socket:bs1363~.+ & socket:bs1363!=1 with a fixed text, namely 'BS1363 (Type G)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:bs1363~.+ & socket:bs1363!=1 is displayed as \"BS1363 (Type G)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows socket:nema5_15=1 with a fixed text, namely 'NEMA 5-15 (Type B)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:nema5_15=1 is displayed as \"NEMA 5-15 (Type B)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows socket:nema5_15~.+ & socket:nema5_15!=1 with a fixed text, namely 'NEMA 5-15 (Type B)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:nema5_15~.+ & socket:nema5_15!=1 is displayed as \"NEMA 5-15 (Type B)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows socket:sev1011_t23=1 with a fixed text, namely 'SEV 1011 T23 (Type J)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:sev1011_t23=1 is displayed as \"SEV 1011 T23 (Type J)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows socket:sev1011_t23~.+ & socket:sev1011_t23!=1 with a fixed text, namely 'SEV 1011 T23 (Type J)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:sev1011_t23~.+ & socket:sev1011_t23!=1 is displayed as \"SEV 1011 T23 (Type J)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows socket:as3112=1 with a fixed text, namely 'AS3112 (Type I)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:as3112=1 is displayed as \"AS3112 (Type I)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows socket:as3112~.+ & socket:as3112!=1 with a fixed text, namely 'AS3112 (Type I)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:as3112~.+ & socket:as3112!=1 is displayed as \"AS3112 (Type I)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows socket:nema_5_20=1 with a fixed text, namely 'NEMA 5-20 (Type B)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "1" + "value": "1", + "description": "socket:nema_5_20=1 is displayed as \"NEMA 5-20 (Type B)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows socket:nema_5_20~.+ & socket:nema_5_20!=1 with a fixed text, namely 'NEMA 5-20 (Type B)' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "socket:nema_5_20~.+ & socket:nema_5_20!=1 is displayed as \"NEMA 5-20 (Type B)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko` are shown with \"There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here\" and can be updated. The question is \"How much plugs of type Schuko wall plug without ground pin (CEE7/4 type F) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_schuko", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:schuko:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:voltage` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:voltage", - "description": "Layer 'Charging stations' shows socket:schuko:voltage=230 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "230" + "value": "230", + "description": "socket:schuko:voltage=230 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:current` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}\" and can be updated. The question is \"What current do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:current", - "description": "Layer 'Charging stations' shows socket:schuko:current=16 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "16" + "value": "16", + "description": "socket:schuko:current=16 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:output` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}\" and can be updated. The question is \"What power output does a single plug of type Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:output", - "description": "Layer 'Charging stations' shows socket:schuko:output=3.6 kW with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "3.6 kW" + "value": "3.6 kW", + "description": "socket:schuko:output=3.6 kW is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee` are shown with \"There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here\" and can be updated. The question is \"How much plugs of type European wall plug with ground pin (CEE7/4 type E) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_typee", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:typee:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:voltage` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}\" and can be updated. The question is \"What voltage do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:voltage", - "description": "Layer 'Charging stations' shows socket:typee:voltage=230 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "230" + "value": "230", + "description": "socket:typee:voltage=230 is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:current` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}\" and can be updated. The question is \"What current do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:current", - "description": "Layer 'Charging stations' shows socket:typee:current=16 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "16" + "value": "16", + "description": "socket:typee:current=16 is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:output` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}\" and can be updated. The question is \"What power output does a single plug of type European wall plug with ground pin (CEE7/4 type E) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=3 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "3 kW" + "value": "3 kW", + "description": "socket:typee:output=3 kW is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=22 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:typee:output=22 kW is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo` are shown with \"There are {socket:chademo} plugs of type Chademo available here\" and can be updated. The question is \"How much plugs of type Chademo are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_chademo", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:chademo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:voltage` are shown with \"Chademo outputs {canonical(socket:chademo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Chademo offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:voltage", - "description": "Layer 'Charging stations' shows socket:chademo:voltage=500 with a fixed text, namely 'Chademo outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "500" + "value": "500", + "description": "socket:chademo:voltage=500 is displayed as \"Chademo outputs 500 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:current` are shown with \"Chademo outputs at most {canonical(socket:chademo:current)}\" and can be updated. The question is \"What current do the plugs with Chademo offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:current", - "description": "Layer 'Charging stations' shows socket:chademo:current=120 with a fixed text, namely 'Chademo outputs at most 120 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "120" + "value": "120", + "description": "socket:chademo:current=120 is displayed as \"Chademo outputs at most 120 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:output` are shown with \"Chademo outputs at most {canonical(socket:chademo:output)}\" and can be updated. The question is \"What power output does a single plug of type Chademo offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:output", - "description": "Layer 'Charging stations' shows socket:chademo:output=50 kW with a fixed text, namely 'Chademo outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:chademo:output=50 kW is displayed as \"Chademo outputs at most 50 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable` are shown with \"There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here\" and can be updated. The question is \"How much plugs of type Type 1 with cable (J1772) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_type1_cable", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:voltage` are shown with \"Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 with cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=200 with a fixed text, namely 'Type 1 with cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "200" + "value": "200", + "description": "socket:type1_cable:voltage=200 is displayed as \"Type 1 with cable (J1772) outputs 200 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=240 with a fixed text, namely 'Type 1 with cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "240" + "value": "240", + "description": "socket:type1_cable:voltage=240 is displayed as \"Type 1 with cable (J1772) outputs 240 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:current` are shown with \"Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 with cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:current", - "description": "Layer 'Charging stations' shows socket:type1_cable:current=32 with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "32" + "value": "32", + "description": "socket:type1_cable:current=32 is displayed as \"Type 1 with cable (J1772) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:output` are shown with \"Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 with cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=3.7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:type1_cable:output=3.7 kW is displayed as \"Type 1 with cable (J1772) outputs at most 3.7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "7 kW" + "value": "7 kW", + "description": "socket:type1_cable:output=7 kW is displayed as \"Type 1 with cable (J1772) outputs at most 7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1` are shown with \"There are {socket:type1} plugs of type Type 1 without cable (J1772) available here\" and can be updated. The question is \"How much plugs of type Type 1 without cable (J1772) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_type1", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:voltage` are shown with \"Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 without cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows socket:type1:voltage=200 with a fixed text, namely 'Type 1 without cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "200" + "value": "200", + "description": "socket:type1:voltage=200 is displayed as \"Type 1 without cable (J1772) outputs 200 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows socket:type1:voltage=240 with a fixed text, namely 'Type 1 without cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "240" + "value": "240", + "description": "socket:type1:voltage=240 is displayed as \"Type 1 without cable (J1772) outputs 240 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:current` are shown with \"Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 without cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:current", - "description": "Layer 'Charging stations' shows socket:type1:current=32 with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "32" + "value": "32", + "description": "socket:type1:current=32 is displayed as \"Type 1 without cable (J1772) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:output` are shown with \"Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 without cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=3.7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:type1:output=3.7 kW is displayed as \"Type 1 without cable (J1772) outputs at most 3.7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=6.6 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "6.6 kW" + "value": "6.6 kW", + "description": "socket:type1:output=6.6 kW is displayed as \"Type 1 without cable (J1772) outputs at most 6.6 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "7 kW" + "value": "7 kW", + "description": "socket:type1:output=7 kW is displayed as \"Type 1 without cable (J1772) outputs at most 7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7.2 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "7.2 kW" + "value": "7.2 kW", + "description": "socket:type1:output=7.2 kW is displayed as \"Type 1 without cable (J1772) outputs at most 7.2 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo` are shown with \"There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here\" and can be updated. The question is \"How much plugs of type Type 1 CCS (aka Type 1 Combo) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_type1_combo", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:voltage` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 CCS (aka Type 1 Combo) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=400 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "400" + "value": "400", + "description": "socket:type1_combo:voltage=400 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs 400 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=1000 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 1000 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "1000" + "value": "1000", + "description": "socket:type1_combo:voltage=1000 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs 1000 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:current` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 CCS (aka Type 1 Combo) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows socket:type1_combo:current=50 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "50" + "value": "50", + "description": "socket:type1_combo:current=50 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 50 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows socket:type1_combo:current=125 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "125" + "value": "125", + "description": "socket:type1_combo:current=125 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:output` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 CCS (aka Type 1 Combo) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=50 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:type1_combo:output=50 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=62.5 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "62.5 kW" + "value": "62.5 kW", + "description": "socket:type1_combo:output=62.5 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=150 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:type1_combo:output=150 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 150 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=350 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "350 kW" + "value": "350 kW", + "description": "socket:type1_combo:output=350 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 350 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger` are shown with \"There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_tesla_supercharger", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_supercharger:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:voltage` are shown with \"Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:voltage=480 with a fixed text, namely 'Tesla Supercharger outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "480" + "value": "480", + "description": "socket:tesla_supercharger:voltage=480 is displayed as \"Tesla Supercharger outputs 480 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:current` are shown with \"Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=125 with a fixed text, namely 'Tesla Supercharger outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_supercharger:current=125 is displayed as \"Tesla Supercharger outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=350 with a fixed text, namely 'Tesla Supercharger outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_supercharger:current=350 is displayed as \"Tesla Supercharger outputs at most 350 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:output` are shown with \"Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=120 kW with a fixed text, namely 'Tesla Supercharger outputs at most 120 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "120 kW" + "value": "120 kW", + "description": "socket:tesla_supercharger:output=120 kW is displayed as \"Tesla Supercharger outputs at most 120 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=150 kW with a fixed text, namely 'Tesla Supercharger outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:tesla_supercharger:output=150 kW is displayed as \"Tesla Supercharger outputs at most 150 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=250 kW with a fixed text, namely 'Tesla Supercharger outputs at most 250 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "250 kW" + "value": "250 kW", + "description": "socket:tesla_supercharger:output=250 kW is displayed as \"Tesla Supercharger outputs at most 250 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2` are shown with \"There are {socket:type2} plugs of type Type 2 (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 (mennekes) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_type2", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:voltage` are shown with \"Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows socket:type2:voltage=230 with a fixed text, namely 'Type 2 (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "230" + "value": "230", + "description": "socket:type2:voltage=230 is displayed as \"Type 2 (mennekes) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows socket:type2:voltage=400 with a fixed text, namely 'Type 2 (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "400" + "value": "400", + "description": "socket:type2:voltage=400 is displayed as \"Type 2 (mennekes) outputs 400 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:current` are shown with \"Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows socket:type2:current=16 with a fixed text, namely 'Type 2 (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "16" + "value": "16", + "description": "socket:type2:current=16 is displayed as \"Type 2 (mennekes) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows socket:type2:current=32 with a fixed text, namely 'Type 2 (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "32" + "value": "32", + "description": "socket:type2:current=32 is displayed as \"Type 2 (mennekes) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:output` are shown with \"Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=11 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:type2:output=11 kW is displayed as \"Type 2 (mennekes) outputs at most 11 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=22 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:type2:output=22 kW is displayed as \"Type 2 (mennekes) outputs at most 22 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo` are shown with \"There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 CCS (mennekes) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_type2_combo", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:voltage` are shown with \"Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 CCS (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=500 with a fixed text, namely 'Type 2 CCS (mennekes) outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "500" + "value": "500", + "description": "socket:type2_combo:voltage=500 is displayed as \"Type 2 CCS (mennekes) outputs 500 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=920 with a fixed text, namely 'Type 2 CCS (mennekes) outputs 920 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "920" + "value": "920", + "description": "socket:type2_combo:voltage=920 is displayed as \"Type 2 CCS (mennekes) outputs 920 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:current` are shown with \"Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 CCS (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows socket:type2_combo:current=125 with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "125" + "value": "125", + "description": "socket:type2_combo:current=125 is displayed as \"Type 2 CCS (mennekes) outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows socket:type2_combo:current=350 with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "350" + "value": "350", + "description": "socket:type2_combo:current=350 is displayed as \"Type 2 CCS (mennekes) outputs at most 350 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:output` are shown with \"Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 CCS (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:output", - "description": "Layer 'Charging stations' shows socket:type2_combo:output=50 kW with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:type2_combo:output=50 kW is displayed as \"Type 2 CCS (mennekes) outputs at most 50 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable` are shown with \"There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 with cable (mennekes) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_type2_cable", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:voltage` are shown with \"Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 with cable (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=230 with a fixed text, namely 'Type 2 with cable (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "230" + "value": "230", + "description": "socket:type2_cable:voltage=230 is displayed as \"Type 2 with cable (mennekes) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=400 with a fixed text, namely 'Type 2 with cable (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "400" + "value": "400", + "description": "socket:type2_cable:voltage=400 is displayed as \"Type 2 with cable (mennekes) outputs 400 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:current` are shown with \"Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 with cable (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows socket:type2_cable:current=16 with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "16" + "value": "16", + "description": "socket:type2_cable:current=16 is displayed as \"Type 2 with cable (mennekes) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows socket:type2_cable:current=32 with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "32" + "value": "32", + "description": "socket:type2_cable:current=32 is displayed as \"Type 2 with cable (mennekes) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:output` are shown with \"Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 with cable (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=11 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:type2_cable:output=11 kW is displayed as \"Type 2 with cable (mennekes) outputs at most 11 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=22 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:type2_cable:output=22 kW is displayed as \"Type 2 with cable (mennekes) outputs at most 22 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs` are shown with \"There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger CCS (a branded type2_css) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_tesla_supercharger_ccs", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:voltage` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "500" + "value": "500", + "description": "socket:tesla_supercharger_ccs:voltage=500 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs 500 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 920 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "920" + "value": "920", + "description": "socket:tesla_supercharger_ccs:voltage=920 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs 920 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:current` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=125 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_supercharger_ccs:current=125 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=350 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_supercharger_ccs:current=350 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:output` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger CCS (a branded type2_css) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kW with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:tesla_supercharger_ccs:output=50 kW is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination` are shown with \"There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger (destination) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_tesla_destination_us", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:voltage` are shown with \"Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger (destination) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 with a fixed text, namely 'Tesla Supercharger (destination) outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "480" + "value": "480", + "description": "socket:tesla_destination:voltage=480 is displayed as \"Tesla Supercharger (destination) outputs 480 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:current` are shown with \"Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger (destination) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_destination:current=125 is displayed as \"Tesla Supercharger (destination) outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_destination:current=350 is displayed as \"Tesla Supercharger (destination) outputs at most 350 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:output` are shown with \"Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger (destination) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=120 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 120 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "120 kW" + "value": "120 kW", + "description": "socket:tesla_destination:output=120 kW is displayed as \"Tesla Supercharger (destination) outputs at most 120 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=150 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:tesla_destination:output=150 kW is displayed as \"Tesla Supercharger (destination) outputs at most 150 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=250 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 250 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "250 kW" + "value": "250 kW", + "description": "socket:tesla_destination:output=250 kW is displayed as \"Tesla Supercharger (destination) outputs at most 250 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination` are shown with \"There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here\" and can be updated. The question is \"How much plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_tesla_destination", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:voltage` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "230" + "value": "230", + "description": "socket:tesla_destination:voltage=230 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "400" + "value": "400", + "description": "socket:tesla_destination:voltage=400 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:current` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}\" and can be updated. The question is \"What current do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "16" + "value": "16", + "description": "socket:tesla_destination:current=16 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "32" + "value": "32", + "description": "socket:tesla_destination:current=32 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:output` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=11 kW with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:tesla_destination:output=11 kW is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=22 kW with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:tesla_destination:output=22 kW is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A` are shown with \"There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here\" and can be updated. The question is \"How much plugs of type USB to charge phones and small electronics are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_USB_A", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:USB-A:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:voltage` are shown with \"USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}\" and can be updated. The question is \"What voltage do the plugs with USB to charge phones and small electronics offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:voltage", - "description": "Layer 'Charging stations' shows socket:USB-A:voltage=5 with a fixed text, namely 'USB to charge phones and small electronics outputs 5 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "5" + "value": "5", + "description": "socket:USB-A:voltage=5 is displayed as \"USB to charge phones and small electronics outputs 5 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:current` are shown with \"USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}\" and can be updated. The question is \"What current do the plugs with USB to charge phones and small electronics offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows socket:USB-A:current=1 with a fixed text, namely 'USB to charge phones and small electronics outputs at most 1 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "1" + "value": "1", + "description": "socket:USB-A:current=1 is displayed as \"USB to charge phones and small electronics outputs at most 1 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows socket:USB-A:current=2 with a fixed text, namely 'USB to charge phones and small electronics outputs at most 2 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "2" + "value": "2", + "description": "socket:USB-A:current=2 is displayed as \"USB to charge phones and small electronics outputs at most 2 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:output` are shown with \"USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}\" and can be updated. The question is \"What power output does a single plug of type USB to charge phones and small electronics offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=5W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5W' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "5W" + "value": "5W", + "description": "socket:USB-A:output=5W is displayed as \"USB to charge phones and small electronics outputs at most 5W\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=10W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10W' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "10W" + "value": "10W", + "description": "socket:USB-A:output=10W is displayed as \"USB to charge phones and small electronics outputs at most 10W\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin` are shown with \"There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here\" and can be updated. The question is \"How much plugs of type Bosch Active Connect with 3 pins and cable are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_bosch_3pin", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_3pin:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:voltage` are shown with \"Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Bosch Active Connect with 3 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:current` are shown with \"Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}\" and can be updated. The question is \"What current do the plugs with Bosch Active Connect with 3 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:output` are shown with \"Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}\" and can be updated. The question is \"What power output does a single plug of type Bosch Active Connect with 3 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin` are shown with \"There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here\" and can be updated. The question is \"How much plugs of type Bosch Active Connect with 5 pins and cable are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_bosch_5pin", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bosch_5pin:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:voltage` are shown with \"Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Bosch Active Connect with 5 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:current` are shown with \"Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}\" and can be updated. The question is \"What current do the plugs with Bosch Active Connect with 5 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:output` are shown with \"Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}\" and can be updated. The question is \"What power output does a single plug of type Bosch Active Connect with 5 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363` are shown with \"There are {socket:bs1363} plugs of type BS1363 (Type G) available here\" and can be updated. The question is \"How much plugs of type BS1363 (Type G) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_bs1363", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:bs1363:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:voltage` are shown with \"BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}\" and can be updated. The question is \"What voltage do the plugs with BS1363 (Type G) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:voltage", - "description": "Layer 'Charging stations' shows socket:bs1363:voltage=230 with a fixed text, namely 'BS1363 (Type G) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "230" + "value": "230", + "description": "socket:bs1363:voltage=230 is displayed as \"BS1363 (Type G) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:current` are shown with \"BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}\" and can be updated. The question is \"What current do the plugs with BS1363 (Type G) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:current", - "description": "Layer 'Charging stations' shows socket:bs1363:current=13 with a fixed text, namely 'BS1363 (Type G) outputs at most 13 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "13" + "value": "13", + "description": "socket:bs1363:current=13 is displayed as \"BS1363 (Type G) outputs at most 13 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:output` are shown with \"BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}\" and can be updated. The question is \"What power output does a single plug of type BS1363 (Type G) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:output", - "description": "Layer 'Charging stations' shows socket:bs1363:output=3kW with a fixed text, namely 'BS1363 (Type G) outputs at most 3kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "3kW" + "value": "3kW", + "description": "socket:bs1363:output=3kW is displayed as \"BS1363 (Type G) outputs at most 3kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15` are shown with \"There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here\" and can be updated. The question is \"How much plugs of type NEMA 5-15 (Type B) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_nema5_15", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:nema5_15:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:voltage` are shown with \"NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}\" and can be updated. The question is \"What voltage do the plugs with NEMA 5-15 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:voltage", - "description": "Layer 'Charging stations' shows socket:nema5_15:voltage=120 with a fixed text, namely 'NEMA 5-15 (Type B) outputs 120 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "120" + "value": "120", + "description": "socket:nema5_15:voltage=120 is displayed as \"NEMA 5-15 (Type B) outputs 120 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:current` are shown with \"NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}\" and can be updated. The question is \"What current do the plugs with NEMA 5-15 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:current", - "description": "Layer 'Charging stations' shows socket:nema5_15:current=15 with a fixed text, namely 'NEMA 5-15 (Type B) outputs at most 15 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "15" + "value": "15", + "description": "socket:nema5_15:current=15 is displayed as \"NEMA 5-15 (Type B) outputs at most 15 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:output` are shown with \"NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}\" and can be updated. The question is \"What power output does a single plug of type NEMA 5-15 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:output", - "description": "Layer 'Charging stations' shows socket:nema5_15:output=1.8 kW with a fixed text, namely 'NEMA 5-15 (Type B) outputs at most 1.8 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "1.8 kW" + "value": "1.8 kW", + "description": "socket:nema5_15:output=1.8 kW is displayed as \"NEMA 5-15 (Type B) outputs at most 1.8 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23` are shown with \"There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here\" and can be updated. The question is \"How much plugs of type SEV 1011 T23 (Type J) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_sev1011_t23", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:sev1011_t23:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:voltage` are shown with \"SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}\" and can be updated. The question is \"What voltage do the plugs with SEV 1011 T23 (Type J) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:voltage", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:voltage=230 with a fixed text, namely 'SEV 1011 T23 (Type J) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "230" + "value": "230", + "description": "socket:sev1011_t23:voltage=230 is displayed as \"SEV 1011 T23 (Type J) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:current` are shown with \"SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}\" and can be updated. The question is \"What current do the plugs with SEV 1011 T23 (Type J) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:current", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:current=16 with a fixed text, namely 'SEV 1011 T23 (Type J) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "16" + "value": "16", + "description": "socket:sev1011_t23:current=16 is displayed as \"SEV 1011 T23 (Type J) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:output` are shown with \"SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}\" and can be updated. The question is \"What power output does a single plug of type SEV 1011 T23 (Type J) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:output", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:output=3.7 kW with a fixed text, namely 'SEV 1011 T23 (Type J) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:sev1011_t23:output=3.7 kW is displayed as \"SEV 1011 T23 (Type J) outputs at most 3.7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112` are shown with \"There are {socket:as3112} plugs of type AS3112 (Type I) available here\" and can be updated. The question is \"How much plugs of type AS3112 (Type I) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_as3112", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:as3112:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:voltage` are shown with \"AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}\" and can be updated. The question is \"What voltage do the plugs with AS3112 (Type I) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:voltage", - "description": "Layer 'Charging stations' shows socket:as3112:voltage=230 with a fixed text, namely 'AS3112 (Type I) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "230" + "value": "230", + "description": "socket:as3112:voltage=230 is displayed as \"AS3112 (Type I) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:current` are shown with \"AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}\" and can be updated. The question is \"What current do the plugs with AS3112 (Type I) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:current", - "description": "Layer 'Charging stations' shows socket:as3112:current=10 with a fixed text, namely 'AS3112 (Type I) outputs at most 10 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "10" + "value": "10", + "description": "socket:as3112:current=10 is displayed as \"AS3112 (Type I) outputs at most 10 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:output` are shown with \"AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}\" and can be updated. The question is \"What power output does a single plug of type AS3112 (Type I) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:output", - "description": "Layer 'Charging stations' shows socket:as3112:output=2.3 kW with a fixed text, namely 'AS3112 (Type I) outputs at most 2.3 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "2.3 kW" + "value": "2.3 kW", + "description": "socket:as3112:output=2.3 kW is displayed as \"AS3112 (Type I) outputs at most 2.3 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20` are shown with \"There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here\" and can be updated. The question is \"How much plugs of type NEMA 5-20 (Type B) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#plugs_amount_socket_nema_5_20", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:nema_5_20:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:voltage' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:voltage` are shown with \"NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}\" and can be updated. The question is \"What voltage do the plugs with NEMA 5-20 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:voltage", - "description": "Layer 'Charging stations' shows socket:nema_5_20:voltage=120 with a fixed text, namely 'NEMA 5-20 (Type B) outputs 120 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "120" + "value": "120", + "description": "socket:nema_5_20:voltage=120 is displayed as \"NEMA 5-20 (Type B) outputs 120 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#voltage_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:current' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:current` are shown with \"NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}\" and can be updated. The question is \"What current do the plugs with NEMA 5-20 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:current", - "description": "Layer 'Charging stations' shows socket:nema_5_20:current=20 with a fixed text, namely 'NEMA 5-20 (Type B) outputs at most 20 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "20" + "value": "20", + "description": "socket:nema_5_20:current=20 is displayed as \"NEMA 5-20 (Type B) outputs at most 20 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#current_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:output' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:output` are shown with \"NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}\" and can be updated. The question is \"What power output does a single plug of type NEMA 5-20 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:output", - "description": "Layer 'Charging stations' shows socket:nema_5_20:output=2.4 kW with a fixed text, namely 'NEMA 5-20 (Type B) outputs at most 2.4 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "2.4 kW" + "value": "2.4 kW", + "description": "socket:nema_5_20:output=2.4 kW is displayed as \"NEMA 5-20 (Type B) outputs at most 2.4 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#power_output_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "opening_hours", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Charging stations' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Charging stations' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this charging station opened?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#OH", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" - }, - { - "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "fee=yes & fee:conditional=no @ customers is displayed as \"Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no @ customers" + "value": "no @ customers", + "description": "fee=yes & fee:conditional=no @ customers is displayed as \"Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional= with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "fee=yes & fee:conditional= is displayed as \"Paid use\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional= with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=yes & fee:conditional= is displayed as \"Paid use\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=yes)" - }, - { - "key": "payment:cash", - "description": "Layer 'Charging stations' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=yes | charge~.+)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Charging stations' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=yes | charge~.+)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Charging stations' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "description": "Values of `charge` are shown with \"Using this charging station costs {charge}\" and can be updated. The question is \"How much does one have to pay to use this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#charge", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "payment:app", - "description": "Layer 'Charging stations' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=yes | charge~.+)", - "value": "yes" - }, - { - "key": "payment:membership_card", - "description": "Layer 'Charging stations' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "description": "payment:app~.+ & payment:app!=no & payment:app!=yes is displayed as \"Payment is done using a dedicated app\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#payment_options", + "icon_url": "./assets/layers/questions/smartphone.svg" }, { "key": "payment:app", - "description": "Layer 'Charging stations' shows payment:app~.+ & payment:app!=no & payment:app!=yes with a fixed text, namely 'Payment is done using a dedicated app' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=yes | charge~.+)" - }, - { - "key": "payment:app", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'payment:app' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if payment:app~.+ & payment:app!=no)" + "description": "Values of `payment:app` are shown with \"Payment can be done using the app {payment:app}\" and can be updated. The question is \"What is the name of the app used for payment?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#app_name", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:membership_card", - "description": "Layer 'Charging stations' shows authentication:membership_card=yes with a fixed text, namely 'Authentication by a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:membership_card=yes is displayed as \"Authentication by a membership card\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:app", - "description": "Layer 'Charging stations' shows authentication:app=yes with a fixed text, namely 'Authentication by an app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:app=yes is displayed as \"Authentication by an app\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:phone_call", - "description": "Layer 'Charging stations' shows authentication:phone_call=yes with a fixed text, namely 'Authentication via phone call is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:phone_call=yes is displayed as \"Authentication via phone call is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:short_message", - "description": "Layer 'Charging stations' shows authentication:short_message=yes with a fixed text, namely 'Authentication via SMS is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:short_message=yes is displayed as \"Authentication via SMS is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:nfc", - "description": "Layer 'Charging stations' shows authentication:nfc=yes with a fixed text, namely 'Authentication via NFC is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:nfc=yes is displayed as \"Authentication via NFC is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:money_card", - "description": "Layer 'Charging stations' shows authentication:money_card=yes with a fixed text, namely 'Authentication via Money Card is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:money_card=yes is displayed as \"Authentication via Money Card is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:debit_card", - "description": "Layer 'Charging stations' shows authentication:debit_card=yes with a fixed text, namely 'Authentication via debit card is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:debit_card=yes is displayed as \"Authentication via debit card is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows authentication:none=yes with a fixed text, namely 'Charging here is (also) possible without authentication' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:none=yes is displayed as \"Charging here is (also) possible without authentication\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:phone_call:number", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'authentication:phone_call:number' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if authentication:phone_call=yes | authentication:short_message=yes)" + "description": "Values of `authentication:phone_call:number` are shown with \"Authenticate by calling or SMS'ing to {authentication:phone_call:number}\" and can be updated. The question is \"What's the phone number for authentication call or SMS?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Auth_phone", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "maxstay", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if motorcar=yes | hgv=yes | bus=yes)" + "description": "Values of `maxstay` are shown with \"One can stay at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum amount of time one is allowed to stay here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#maxstay", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "maxstay", - "description": "Layer 'Charging stations' shows maxstay=unlimited with a fixed text, namely 'There is no limit to the amount of time one can stay here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if motorcar=yes | hgv=yes | bus=yes)", - "value": "unlimited" + "value": "unlimited", + "description": "maxstay=unlimited is displayed as \"There is no limit to the amount of time one can stay here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#maxstay", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'network' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `network` are shown with \"Part of the network {network}\" and can be updated. The question is \"Is this charging station part of a network?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "no:network", - "description": "Layer 'Charging stations' shows no:network=yes with a fixed text, namely 'Not part of a bigger network, e.g. because the charging station is maintained by a local business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "no:network=yes is displayed as \"Not part of a bigger network, e.g. because the charging station is maintained by a local business\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=none with a fixed text, namely 'Not part of a bigger network' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "none" + "value": "none", + "description": "network=none is displayed as \"Not part of a bigger network\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=AeroVironment with a fixed text, namely 'AeroVironment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "AeroVironment" + "value": "AeroVironment", + "description": "network=AeroVironment is displayed as \"AeroVironment\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Blink with a fixed text, namely 'Blink' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "Blink" + "value": "Blink", + "description": "network=Blink is displayed as \"Blink\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=EVgo with a fixed text, namely 'EVgo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "EVgo" + "value": "EVgo", + "description": "network=EVgo is displayed as \"EVgo\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Allego with a fixed text, namely 'Allego' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "Allego" + "value": "Allego", + "description": "network=Allego is displayed as \"Allego\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Blue Corner with a fixed text, namely 'Blue Corner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "Blue Corner" + "value": "Blue Corner", + "description": "network=Blue Corner is displayed as \"Blue Corner\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Tesla with a fixed text, namely 'Tesla' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "Tesla" + "value": "Tesla", + "description": "network=Tesla is displayed as \"Tesla\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operator", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if network=)" + "description": "Values of `operator` are shown with \"This charging station is operated by {operator}\" and can be updated. The question is \"Who is the operator of this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operator", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network= with a fixed text, namely 'Actually, {operator} is the network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key network. (This is only shown if network=)", - "value": "" + "description": "network= is displayed as \"Actually, {operator} is the network\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operator", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "phone", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `phone` are shown with \"In case of problems, call {phone}\" and can be updated. The question is \"What number can one call if there is a problem with this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#phone", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "email", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `email` are shown with \"In case of problems, send an email to {email}\" and can be updated. The question is \"What is the email address of the operator?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#email", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "website", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "level", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Charging stations' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Charging stations' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Charging stations' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Charging stations' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Charging stations' 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 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "-1" + "description": "Values of `website` are shown with \"More info on {website}\" and can be updated. The question is \"What is the website where one can find more information about this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#website", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "ref", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if network~.+)" + "description": "Values of `ref` are shown with \"Reference number is {ref}\" and can be updated. The question is \"What is the reference number of this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#ref", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "broken" + "value": "broken", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "parking:fee", - "description": "Layer 'Charging stations' shows parking:fee=no with a fixed text, namely 'No additional parking cost while charging' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if motor_vehicle=yes | hgv=yes | bus=yes | bicycle=no | bicycle=)", - "value": "no" + "value": "no", + "description": "parking:fee=no is displayed as \"No additional parking cost while charging\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Parking_fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "parking:fee", - "description": "Layer 'Charging stations' shows parking:fee=yes with a fixed text, namely 'An additional parking fee should be paid while charging' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if motor_vehicle=yes | hgv=yes | bus=yes | bicycle=no | bicycle=)", - "value": "yes" + "value": "yes", + "description": "parking:fee=yes is displayed as \"An additional parking fee should be paid while charging\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station_ebikes.md#Parking_fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Vending Machines showing features with this tag", - "value": "vending_machine" + "value": "vending_machine", + "description": "Features with this tag are displayed by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Vending Machines showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Vending Machines' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "level", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Vending Machines' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Vending Machines' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Vending Machines' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Vending Machines' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Vending Machines' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if repeat_on=)", - "value": "-1" + "description": "Features with this tag are displayed by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'vending' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `vending` are shown with \"This vending machine sells {vending}\" and can be updated. The question is \"What does this vending machine sell?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=drinks with a fixed text, namely 'Drinks are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "drinks" + "value": "drinks", + "description": "vending=drinks is displayed as \"Drinks are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=sweets with a fixed text, namely 'Sweets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "sweets" + "value": "sweets", + "description": "vending=sweets is displayed as \"Sweets are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=food with a fixed text, namely 'Food is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "food" + "value": "food", + "description": "vending=food is displayed as \"Food is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/utensils.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=cigarettes with a fixed text, namely 'Cigarettes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "cigarettes" + "value": "cigarettes", + "description": "vending=cigarettes is displayed as \"Cigarettes are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/smoking.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=condoms with a fixed text, namely 'Condoms are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "condoms" + "value": "condoms", + "description": "vending=condoms is displayed as \"Condoms are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/condom.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=coffee with a fixed text, namely 'Coffee is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "coffee" + "value": "coffee", + "description": "vending=coffee is displayed as \"Coffee is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/mug-saucer.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=water with a fixed text, namely 'Drinking water is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "water" + "value": "water", + "description": "vending=water is displayed as \"Drinking water is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=newspapers with a fixed text, namely 'Newspapers are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "newspapers" + "value": "newspapers", + "description": "vending=newspapers is displayed as \"Newspapers are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_tube with a fixed text, namely 'Bicycle inner tubes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bicycle_tube" + "value": "bicycle_tube", + "description": "vending=bicycle_tube is displayed as \"Bicycle inner tubes are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=milk with a fixed text, namely 'Milk is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "milk" + "value": "milk", + "description": "vending=milk is displayed as \"Milk is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/cow.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bread with a fixed text, namely 'Bread is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bread" + "value": "bread", + "description": "vending=bread is displayed as \"Bread is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=eggs with a fixed text, namely 'Eggs are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "eggs" + "value": "eggs", + "description": "vending=eggs is displayed as \"Eggs are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/egg.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=ice_cream with a fixed text, namely 'Ice cream is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "ice_cream" + "value": "ice_cream", + "description": "vending=ice_cream is displayed as \"Ice cream is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=cheese with a fixed text, namely 'Cheese is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "cheese" + "value": "cheese", + "description": "vending=cheese is displayed as \"Cheese is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=honey with a fixed text, namely 'Honey is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "honey" + "value": "honey", + "description": "vending=honey is displayed as \"Honey is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/honey.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=potatoes with a fixed text, namely 'Potatoes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "potatoes" + "value": "potatoes", + "description": "vending=potatoes is displayed as \"Potatoes are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/potato.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=meat with a fixed text, namely 'Meat is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "meat" + "value": "meat", + "description": "vending=meat is displayed as \"Meat is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/id_presets/temaki-meat.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=fruit with a fixed text, namely 'Fruit is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "fruit" + "value": "fruit", + "description": "vending=fruit is displayed as \"Fruit is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/fruits.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=strawberries with a fixed text, namely 'Strawberries are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "strawberries" + "value": "strawberries", + "description": "vending=strawberries is displayed as \"Strawberries are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/strawberry.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=flowers with a fixed text, namely 'Flowers are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "flowers" + "value": "flowers", + "description": "vending=flowers is displayed as \"Flowers are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=parking_tickets with a fixed text, namely 'Parking tickets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "parking_tickets" + "value": "parking_tickets", + "description": "vending=parking_tickets is displayed as \"Parking tickets are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/parking_ticket_machine/parking_tickets.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=elongated_coin with a fixed text, namely 'Pressed pennies are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "elongated_coin" + "value": "elongated_coin", + "description": "vending=elongated_coin is displayed as \"Pressed pennies are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=public_transport_tickets with a fixed text, namely 'Public transport tickets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "public_transport_tickets" + "value": "public_transport_tickets", + "description": "vending=public_transport_tickets is displayed as \"Public transport tickets are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/themes/stations/public_transport_tickets.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_light with a fixed text, namely 'Bicycle lights are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bicycle_light" + "value": "bicycle_light", + "description": "vending=bicycle_light is displayed as \"Bicycle lights are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=gloves with a fixed text, namely 'Gloves are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "gloves" + "value": "gloves", + "description": "vending=gloves is displayed as \"Gloves are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_repair_kit with a fixed text, namely 'Bicycle repair kits are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bicycle_repair_kit" + "value": "bicycle_repair_kit", + "description": "vending=bicycle_repair_kit is displayed as \"Bicycle repair kits are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_pump with a fixed text, namely 'Bicycle pumps are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bicycle_pump" + "value": "bicycle_pump", + "description": "vending=bicycle_pump is displayed as \"Bicycle pumps are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_lock with a fixed text, namely 'Bicycle locks are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "bicycle_lock" + "value": "bicycle_lock", + "description": "vending=bicycle_lock is displayed as \"Bicycle locks are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "brand", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if vending~^(.*bicycle_tube.*)$)" + "description": "Values of `brand` are shown with \"{brand} tubes are sold here\" and can be updated. The question is \"Which brand of tubes are sold here?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#bicycle_tube_vending_machine_brand", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "brand", - "description": "Layer 'Vending Machines' shows brand=Continental with a fixed text, namely 'Continental tubes are sold here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if vending~^(.*bicycle_tube.*)$)", - "value": "Continental" + "value": "Continental", + "description": "brand=Continental is displayed as \"Continental tubes are sold here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#bicycle_tube_vending_machine_brand", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "brand", - "description": "Layer 'Vending Machines' shows brand=Schwalbe with a fixed text, namely 'Schwalbe tubes are sold here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if vending~^(.*bicycle_tube.*)$)", - "value": "Schwalbe" - }, - { - "key": "opening_hours", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Vending Machines' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Vending Machines' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" - }, - { - "key": "payment:cash", - "description": "Layer 'Vending Machines' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Vending Machines' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Vending Machines' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "Schwalbe", + "description": "brand=Schwalbe is displayed as \"Schwalbe tubes are sold here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#bicycle_tube_vending_machine_brand", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "payment:coins", - "description": "Layer 'Vending Machines' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Vending Machines' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Vending Machines' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Vending Machines' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.01 EUR with a fixed text, namely '1 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.01 EUR" + "value": "0.01 EUR", + "description": "payment:coins:denominations=0.01 EUR is displayed as \"1 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/1cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.02 EUR with a fixed text, namely '2 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.02 EUR" + "value": "0.02 EUR", + "description": "payment:coins:denominations=0.02 EUR is displayed as \"2 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/2cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.05 EUR with a fixed text, namely '5 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 EUR" + "value": "0.05 EUR", + "description": "payment:coins:denominations=0.05 EUR is displayed as \"5 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/5cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.10 EUR with a fixed text, namely '10 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 EUR" + "value": "0.10 EUR", + "description": "payment:coins:denominations=0.10 EUR is displayed as \"10 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/10cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.20 EUR with a fixed text, namely '20 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 EUR" + "value": "0.20 EUR", + "description": "payment:coins:denominations=0.20 EUR is displayed as \"20 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/20cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.50 EUR with a fixed text, namely '50 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 EUR" + "value": "0.50 EUR", + "description": "payment:coins:denominations=0.50 EUR is displayed as \"50 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/50cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=1 EUR with a fixed text, namely '1 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 EUR" + "value": "1 EUR", + "description": "payment:coins:denominations=1 EUR is displayed as \"1 euro coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/1euro.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=2 EUR with a fixed text, namely '2 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 EUR" + "value": "2 EUR", + "description": "payment:coins:denominations=2 EUR is displayed as \"2 euro coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/2euro.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.05 CHF with a fixed text, namely '5 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 CHF" + "value": "0.05 CHF", + "description": "payment:coins:denominations=0.05 CHF is displayed as \"5 centimes coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/5rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.10 CHF with a fixed text, namely '10 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 CHF" + "value": "0.10 CHF", + "description": "payment:coins:denominations=0.10 CHF is displayed as \"10 centimes coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/10rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.20 CHF with a fixed text, namely '20 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 CHF" + "value": "0.20 CHF", + "description": "payment:coins:denominations=0.20 CHF is displayed as \"20 centimes coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/20rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.50 CHF with a fixed text, namely '½ franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 CHF" + "value": "0.50 CHF", + "description": "payment:coins:denominations=0.50 CHF is displayed as \"½ franc coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/50rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=1 CHF with a fixed text, namely '1 franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 CHF" + "value": "1 CHF", + "description": "payment:coins:denominations=1 CHF is displayed as \"1 franc coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/1fr-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=2 CHF with a fixed text, namely '2 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 CHF" + "value": "2 CHF", + "description": "payment:coins:denominations=2 CHF is displayed as \"2 francs coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/2fr-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=5 CHF with a fixed text, namely '5 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 CHF" + "value": "5 CHF", + "description": "payment:coins:denominations=5 CHF is displayed as \"5 francs coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/5fr-2019-800px.png" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=5 EUR with a fixed text, namely '5 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 EUR" + "value": "5 EUR", + "description": "payment:notes:denominations=5 EUR is displayed as \"5 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/5euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=10 EUR with a fixed text, namely '10 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "10 EUR" + "value": "10 EUR", + "description": "payment:notes:denominations=10 EUR is displayed as \"10 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/10euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=20 EUR with a fixed text, namely '20 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "20 EUR" + "value": "20 EUR", + "description": "payment:notes:denominations=20 EUR is displayed as \"20 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/20euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=50 EUR with a fixed text, namely '50 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "50 EUR" + "value": "50 EUR", + "description": "payment:notes:denominations=50 EUR is displayed as \"50 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/50euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=100 EUR with a fixed text, namely '100 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "100 EUR" + "value": "100 EUR", + "description": "payment:notes:denominations=100 EUR is displayed as \"100 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/100euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=200 EUR with a fixed text, namely '200 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "200 EUR" + "value": "200 EUR", + "description": "payment:notes:denominations=200 EUR is displayed as \"200 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/200euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=500 EUR with a fixed text, namely '500 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "500 EUR" + "value": "500 EUR", + "description": "payment:notes:denominations=500 EUR is displayed as \"500 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/500euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=10 CHF with a fixed text, namely '10 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "10 CHF" + "value": "10 CHF", + "description": "payment:notes:denominations=10 CHF is displayed as \"10 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/10chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=20 CHF with a fixed text, namely '20 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "20 CHF" + "value": "20 CHF", + "description": "payment:notes:denominations=20 CHF is displayed as \"20 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/20chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=50 CHF with a fixed text, namely '50 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "50 CHF" + "value": "50 CHF", + "description": "payment:notes:denominations=50 CHF is displayed as \"50 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/50chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=100 CHF with a fixed text, namely '100 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "100 CHF" + "value": "100 CHF", + "description": "payment:notes:denominations=100 CHF is displayed as \"100 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/100chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=200 CHF with a fixed text, namely '200 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "200 CHF" + "value": "200 CHF", + "description": "payment:notes:denominations=200 CHF is displayed as \"200 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/200chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=1000 CHF with a fixed text, namely '1000 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1000 CHF" + "value": "1000 CHF", + "description": "payment:notes:denominations=1000 CHF is displayed as \"1000 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/1000chf.svg" }, { "key": "operator", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `operator` are shown with \"This vending machine is operated by {operator}\" and can be updated. The question is \"Who operates this vending machine?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#operator", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "indoor", - "description": "Layer 'Vending Machines' shows indoor= with a fixed text, namely 'This vending machine is outdoors' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= is displayed as \"This vending machine is outdoors\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#indoor", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "indoor", - "description": "Layer 'Vending Machines' shows indoor=yes with a fixed text, namely 'This vending machine is indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This vending machine is indoors\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#indoor", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "indoor", - "description": "Layer 'Vending Machines' shows indoor=no with a fixed text, namely 'This vending machine is outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This vending machine is outdoors\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#indoor", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "phone", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:phone", - "description": "Layer 'Vending Machines' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "website", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" - }, - { - "key": "contact:website", - "description": "Layer 'Vending Machines' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of the operator of this vending machine?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "charge", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if vending~^(.*bicycle_tube.*)$)" + "description": "Values of `charge` are shown with \"a bicycle tube costs {charge}\" and can be updated. The question is \"How much does a a bicycle tube cost?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#charge_bicycle_tube", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "charge", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if vending~^(.*bicycle_light.*)$)" + "description": "Values of `charge` are shown with \"bicycle light costs {charge}\" and can be updated. The question is \"How much does a bicycle light cost?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#charge_bicycle_light", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "charge", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') (This is only shown if vending~^(.*condom.*)$)" + "description": "Values of `charge` are shown with \"a condom costs {charge}\" and can be updated. The question is \"How much does a a condom cost?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#charge_condom", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "operational_status", - "description": "Layer 'Vending Machines' shows operational_status= with a fixed text, namely 'This vending machine works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= is displayed as \"This vending machine works\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#operational_status", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "operational_status", - "description": "Layer 'Vending Machines' shows operational_status=broken with a fixed text, namely 'This vending machine is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This vending machine is broken\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#operational_status", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "operational_status", - "description": "Layer 'Vending Machines' shows operational_status=closed with a fixed text, namely 'This vending machine is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This vending machine is closed\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#operational_status", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "operational_status", - "description": "Layer 'Vending Machines' shows operational_status~.+ with a fixed text, namely 'The operational status is {operational_status}' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "operational_status~.+ is displayed as \"The operational status is {operational_status}\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine_bicycle.md#operational_status", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "man_made", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle counters showing features with this tag", - "value": "monitoring_station" + "value": "monitoring_station", + "description": "Features with this tag are displayed by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "monitoring:bicycle", - "description": "The MapComplete theme Cyclofix - a map for cyclists has a layer Bicycle counters showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Bicycle counters' 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 'Cyclofix - a map for cyclists') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bicycle counters allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "yes", + "description": "Features with this tag are displayed by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "display", - "description": "Layer 'Bicycle counters' shows display=digital with a fixed text, namely 'This counter has a digital display' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "digital" + "value": "digital", + "description": "display=digital is displayed as \"This counter has a digital display\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#display", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "display", - "description": "Layer 'Bicycle counters' shows display=analog with a fixed text, namely 'This counter has an analog display' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "analog" + "value": "analog", + "description": "display=analog is displayed as \"This counter has an analog display\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#display", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "display", - "description": "Layer 'Bicycle counters' shows display=no with a fixed text, namely 'This counter has no display' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "no" + "value": "no", + "description": "display=no is displayed as \"This counter has no display\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#display", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "name", - "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `name` are shown with \"Name of the counted location: {name}\" and can be updated. The question is \"What is the name of the counted location?\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#name", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "start_date", - "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `start_date` are shown with \"This counter started counting on {start_date}\" and can be updated. The question is \"When did this counter start counting?\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#start_date", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "amenity", - "description": "Layer 'Bicycle counters' shows amenity=clock with a fixed text, namely 'This counter has a clock' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "clock" + "value": "clock", + "description": "amenity=clock is displayed as \"This counter has a clock\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#clock", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "amenity", - "description": "Layer 'Bicycle counters' shows amenity= with a fixed text, namely 'This counter has no clock' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists') Picking this answer will delete the key amenity.", - "value": "" + "description": "amenity= is displayed as \"This counter has no clock\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#clock", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "ref", - "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `ref` are shown with \"Reference number of the counter: {ref}\" and can be updated. The question is \"What is the reference number of this counter?\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#ref", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "noref", - "description": "Layer 'Bicycle counters' shows noref=yes with a fixed text, namely 'This counter has no reference number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')", - "value": "yes" + "value": "yes", + "description": "noref=yes is displayed as \"This counter has no reference number\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#ref", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" }, { "key": "website", - "description": "Layer 'Bicycle counters' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cyclofix - a map for cyclists')" + "description": "Values of `website` are shown with \"Website of the counter: {website}\" and can be updated. The question is \"Is there a website for this bicycle counter?\" by layer Bicycle counters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_counter.md#website", + "icon_url": "./assets/layers/bicycle_counter/bicycle_monitoring_station.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_disaster_response.json b/Docs/TagInfo/mapcomplete_disaster_response.json index 1d2ec77bc3..cfb6df8467 100644 --- a/Docs/TagInfo/mapcomplete_disaster_response.json +++ b/Docs/TagInfo/mapcomplete_disaster_response.json @@ -7,1025 +7,829 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/disaster_response/CivilDefence.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Disaster response and emergency services has a layer Hospitals showing features with this tag", - "value": "hospital" + "value": "hospital", + "description": "Features with this tag are displayed by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "amenity", - "description": "The MapComplete theme Disaster response and emergency services has a layer Hospitals showing features with this tag", - "value": "clinic" + "value": "clinic", + "description": "Features with this tag are displayed by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "id", - "description": "Layer 'Hospitals' 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 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Hospitals, Map of fire stations, Disaster response organizations, Police stations, Map of fire extinguishers, Emergency assembly points, Defibrillators, Map of hydrants, Doctors, Map of ambulance stations, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "name", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `name` are shown with \"This hospital is called {name}\" and can be updated. The question is \"What is the name of this hospital?\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#name", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "amenity", - "description": "Layer 'Hospitals' shows amenity=clinic with a fixed text, namely 'This is a clinic - patients can not stay overnight' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "clinic" + "value": "clinic", + "description": "amenity=clinic is displayed as \"This is a clinic - patients can not stay overnight\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#inpatient", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "amenity", - "description": "Layer 'Hospitals' shows amenity=hospital with a fixed text, namely 'This is a hospital - patients can be admitted here for multiple days' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "hospital" + "value": "hospital", + "description": "amenity=hospital is displayed as \"This is a hospital - patients can be admitted here for multiple days\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#inpatient", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "phone", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Hospitals, Police stations, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Hospitals' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Hospitals, Police stations, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Hospitals, Police stations, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Hospitals' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Hospitals, Police stations, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Hospitals' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Hospitals, Police stations, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Hospitals, Disaster response organizations, Police stations, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Hospitals' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Hospitals, Disaster response organizations, Police stations, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "addr:street", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Hospitals, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#header", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "addr:unit", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Hospitals, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#header", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "addr:housenumber", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Hospitals, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#header", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "addr:housenumber", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `addr:housenumber` are shown with \"The house number is {addr:housenumber}\" and can be updated. The question is \"What is the number of this house?\" by layers Hospitals, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#housenumber", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "nohousenumber", - "description": "Layer 'Hospitals' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "nohousenumber=yes is displayed as \"This building has no house number\" by layers Hospitals, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#housenumber", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "addr:street", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if nohousenumber!~^(yes)$)" + "description": "Values of `addr:street` are shown with \"This address is in street {addr:street}\" and can be updated. The question is \"What street is this address located in?\" by layers Hospitals, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#street", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "addr:unit", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `addr:unit` are shown with \"The unit number is {addr:unit}\" and can be updated. The question is \"What is the unit number or letter?\" by layers Hospitals, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#unit", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "addr:unit", - "description": "Layer 'Hospitals' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') Picking this answer will delete the key addr:unit.", - "value": "" + "description": "addr:unit= is displayed as \"No unit number\" by layers Hospitals, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#unit", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "opening_hours:visitors", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'opening_hours:visitors' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#oh_visitor", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "amenity", - "description": "The MapComplete theme Disaster response and emergency services has a layer Map of fire stations showing features with this tag", - "value": "fire_station" - }, - { - "key": "id", - "description": "Layer 'Map of fire stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "fire_station", + "description": "Features with this tag are displayed by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "name", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `name` are shown with \"This station is called {name}.\" and can be updated. The question is \"What is the name of this fire station?\" by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_name", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "addr:street", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `addr:street` are shown with \"This station is along a highway called {addr:street}.\" and can be updated. The question is \" What is the street name where the station located?\" by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_street", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "addr:place", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:place' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `addr:place` are shown with \"This station is found within {addr:place}.\" and can be updated. The question is \"Where is the station located? (e.g. name of neighborhood, villlage, or town)\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_place", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `operator` are shown with \"This station is operated by {operator}.\" and can be updated. The question is \"What agency operates this station?\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator", - "description": "Layer 'Map of fire stations' shows operator=Bureau of Fire Protection & operator:type=government with a fixed text, namely 'Bureau of Fire Protection' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "Bureau of Fire Protection" + "value": "Bureau of Fire Protection", + "description": "operator=Bureau of Fire Protection & operator:type=government is displayed as \"Bureau of Fire Protection\" by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator=Bureau of Fire Protection & operator:type=government with a fixed text, namely 'Bureau of Fire Protection' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "government" + "value": "government", + "description": "operator=Bureau of Fire Protection & operator:type=government is displayed as \"Bureau of Fire Protection\" by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator:type' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `operator:type` are shown with \"The operator is a(n) {operator:type} entity.\" and can be updated. The question is \"How is the station operator classified?\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator:type=government with a fixed text, namely 'The station is operated by the government.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "government" + "value": "government", + "description": "operator:type=government is displayed as \"The station is operated by the government.\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator:type=community with a fixed text, namely 'The station is operated by a community-based, or informal organization.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "community" + "value": "community", + "description": "operator:type=community is displayed as \"The station is operated by a community-based, or informal organization.\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator:type=ngo with a fixed text, namely 'The station is operated by a formal group of volunteers.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "ngo" + "value": "ngo", + "description": "operator:type=ngo is displayed as \"The station is operated by a formal group of volunteers.\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator:type=private with a fixed text, namely 'The station is privately operated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "private" + "value": "private", + "description": "operator:type=private is displayed as \"The station is privately operated.\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "image", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of fire stations, Disaster response organizations, Police stations, Map of fire extinguishers, Emergency assembly points, Defibrillators, Map of hydrants, Doctors, Map of ambulance stations, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#images", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "panoramax", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of fire stations, Disaster response organizations, Police stations, Map of fire extinguishers, Emergency assembly points, Defibrillators, Map of hydrants, Doctors, Map of ambulance stations, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#images", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "mapillary", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of fire stations, Disaster response organizations, Police stations, Map of fire extinguishers, Emergency assembly points, Defibrillators, Map of hydrants, Doctors, Map of ambulance stations, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#images", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "wikidata", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of fire stations, Disaster response organizations, Police stations, Map of fire extinguishers, Emergency assembly points, Defibrillators, Map of hydrants, Doctors, Map of ambulance stations, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#images", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "wikipedia", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of fire stations, Disaster response organizations, Police stations, Map of fire extinguishers, Emergency assembly points, Defibrillators, Map of hydrants, Doctors, Map of ambulance stations, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#images", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "emergency", - "description": "The MapComplete theme Disaster response and emergency services has a layer Disaster response organizations showing features with this tag", - "value": "disaster_response" - }, - { - "key": "id", - "description": "Layer 'Disaster response organizations' 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 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Disaster response organizations allows to upload images and adds them under the 'panoramax'-tag (and 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 'Disaster response organizations allows to upload images and adds them under the 'panoramax'-tag (and 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 'Disaster response organizations allows to upload images and adds them under the 'panoramax'-tag (and 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 'Disaster response organizations allows to upload images and adds them under the 'panoramax'-tag (and 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 'Disaster response organizations allows to upload images and adds them under the 'panoramax'-tag (and 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": "website", - "description": "Layer 'Disaster response organizations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:website", - "description": "Layer 'Disaster response organizations' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "value": "disaster_response", + "description": "Features with this tag are displayed by layer Disaster response organizations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/disaster_response.md", + "icon_url": "./assets/themes/disaster_response/CivilDefence.svg" }, { "key": "name", - "description": "Layer 'Disaster response organizations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `name` are shown with \"This organization is named {name}\" and can be updated. The question is \"What is the name of this organization?\" by layer Disaster response organizations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/disaster_response.md#disaster_response_name", + "icon_url": "./assets/themes/disaster_response/CivilDefence.svg" }, { "key": "amenity", - "description": "The MapComplete theme Disaster response and emergency services has a layer Police stations showing features with this tag", - "value": "police" + "value": "police", + "description": "Features with this tag are displayed by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "police", - "description": "The MapComplete theme Disaster response and emergency services has a layer Police stations showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Police stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Features with this tag are displayed by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "name", - "description": "Layer 'Police stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "phone", - "description": "Layer 'Police stations' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:phone", - "description": "Layer 'Police stations' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "email", - "description": "Layer 'Police stations' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:email", - "description": "Layer 'Police stations' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "operator:email", - "description": "Layer 'Police stations' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "website", - "description": "Layer 'Police stations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:website", - "description": "Layer 'Police stations' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this police facility?\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#police_name", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "opening_hours", - "description": "Layer 'Police stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Police stations, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#opening_hours", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "opening_hours", - "description": "Layer 'Police stations' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Police stations, Defibrillators, Doctors, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#opening_hours", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "detention", - "description": "Layer 'Police stations' shows detention=yes with a fixed text, namely 'This police office has some cells to detain people' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if amenity=police)", - "value": "yes" + "value": "yes", + "description": "detention=yes is displayed as \"This police office has some cells to detain people\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#4_z2nrdhy6tyyh4fd", + "icon_url": "./assets/layers/police/jail.svg" }, { "key": "detention", - "description": "Layer 'Police stations' shows detention=no with a fixed text, namely 'This police office does not have cells to detain people' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if amenity=police)", - "value": "no" + "value": "no", + "description": "detention=no is displayed as \"This police office does not have cells to detain people\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#4_z2nrdhy6tyyh4fd", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "emergency", - "description": "The MapComplete theme Disaster response and emergency services has a layer Map of fire extinguishers showing features with this tag", - "value": "fire_extinguisher" - }, - { - "key": "id", - "description": "Layer 'Map of fire extinguishers' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "fire_extinguisher", + "description": "Features with this tag are displayed by layer Map of fire extinguishers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers' shows and asks freeform values for key 'location' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `location` are shown with \"Location: {location}\" and can be updated. The question is \"Where is it positioned?\" by layer Map of fire extinguishers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers' shows location=indoor with a fixed text, namely 'Found indoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "indoor" + "value": "indoor", + "description": "location=indoor is displayed as \"Found indoors.\" by layer Map of fire extinguishers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers' shows location=outdoor with a fixed text, namely 'Found outdoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "outdoor" - }, - { - "key": "image", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "outdoor", + "description": "location=outdoor is displayed as \"Found outdoors.\" by layer Map of fire extinguishers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" }, { "key": "emergency", - "description": "The MapComplete theme Disaster response and emergency services has a layer Emergency assembly points showing features with this tag", - "value": "assembly_point" - }, - { - "key": "id", - "description": "Layer 'Emergency assembly points' 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 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Emergency assembly points allows to upload images and adds them under the 'panoramax'-tag (and 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 'Emergency assembly points allows to upload images and adds them under the 'panoramax'-tag (and 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 'Emergency assembly points allows to upload images and adds them under the 'panoramax'-tag (and 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 'Emergency assembly points allows to upload images and adds them under the 'panoramax'-tag (and 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 'Emergency assembly points allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "assembly_point", + "description": "Features with this tag are displayed by layer Emergency assembly points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assembly_point.md", + "icon_url": "./assets/layers/assembly_point/assembly_point.svg" }, { "key": "name", - "description": "Layer 'Emergency assembly points' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `name` are shown with \"This assembly point is named {name}\" and can be updated. The question is \"What is the name of this assembly point?\" by layer Emergency assembly points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assembly_point.md#assembly_point_name", + "icon_url": "./assets/layers/assembly_point/assembly_point.svg" }, { "key": "operator", - "description": "Layer 'Emergency assembly points' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `operator` are shown with \"This assembly point is operated by {operator}\" and can be updated. The question is \"What organization operates this assembly point?\" by layer Emergency assembly points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assembly_point.md#assembly_point_operator", + "icon_url": "./assets/layers/assembly_point/assembly_point.svg" }, { "key": "assembly_point:earthquake", - "description": "Layer 'Emergency assembly points' shows assembly_point:earthquake=yes with a fixed text, namely 'Earthquake' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "assembly_point:earthquake=yes is displayed as \"Earthquake\" by layer Emergency assembly points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assembly_point.md#disaster_type", + "icon_url": "./assets/layers/assembly_point/earthquake.svg" }, { "key": "assembly_point:flood", - "description": "Layer 'Emergency assembly points' shows assembly_point:flood=yes with a fixed text, namely 'Flood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "assembly_point:flood=yes is displayed as \"Flood\" by layer Emergency assembly points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assembly_point.md#disaster_type", + "icon_url": "./assets/layers/assembly_point/flood.svg" }, { "key": "assembly_point:fire", - "description": "Layer 'Emergency assembly points' shows assembly_point:fire=yes with a fixed text, namely 'Fire' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "assembly_point:fire=yes is displayed as \"Fire\" by layer Emergency assembly points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assembly_point.md#disaster_type", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "assembly_point:landslide", - "description": "Layer 'Emergency assembly points' shows assembly_point:landslide=yes with a fixed text, namely 'Landslide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "assembly_point:landslide=yes is displayed as \"Landslide\" by layer Emergency assembly points", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/assembly_point.md#disaster_type", + "icon_url": "./assets/layers/assembly_point/landslide.svg" }, { "key": "emergency", - "description": "The MapComplete theme Disaster response and emergency services has a layer Defibrillators showing features with this tag", - "value": "defibrillator" - }, - { - "key": "id", - "description": "Layer 'Defibrillators' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "defibrillator", + "description": "Features with this tag are displayed by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "indoor", - "description": "Layer 'Defibrillators' shows indoor=yes with a fixed text, namely 'This defibrillator is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This defibrillator is located indoors\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_indoors", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "indoor", - "description": "Layer 'Defibrillators' shows indoor=no with a fixed text, namely 'This defibrillator is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This defibrillator is located outdoors\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_indoors", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Is this defibrillator freely accessible?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Publicly accessible\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=public with a fixed text, namely 'Publicly accessible' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Publicly accessible\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=customers with a fixed text, namely 'Only accessible to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only accessible to customers\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accesible to staff, the owners, …)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Not accessible to the general public (e.g. only accesible to staff, the owners, …)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "access", - "description": "Layer 'Defibrillators' shows access=no with a fixed text, namely 'Not accessible, possibly only for professional use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible, possibly only for professional use\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "level", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if indoor=yes)" + "description": "Values of `level` are shown with \"This defibrillator is on floor {level}\" and can be updated. The question is \"On which floor is this defibrillator located?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "level", - "description": "Layer 'Defibrillators' shows level=0 with a fixed text, namely 'This defibrillator is on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if indoor=yes)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"This defibrillator is on the ground floor\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "level", - "description": "Layer 'Defibrillators' shows level=1 with a fixed text, namely 'This defibrillator is on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if indoor=yes)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"This defibrillator is on the first floor\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "defibrillator:location", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `defibrillator:location` are shown with \"Extra information about the location (in the local language):
{defibrillator:location}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in the local language)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "defibrillator:location:en", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:en' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `defibrillator:location:en` are shown with \"Extra information about the location (in English):
{defibrillator:location:en}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in English)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location_en", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "defibrillator:location:fr", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:fr' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if _country=be | defibrillator:location:fr~.+)" + "description": "Values of `defibrillator:location:fr` are shown with \"Extra information about the location (in French):
{defibrillator:location:fr}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in French)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location_fr", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wheelchair", - "description": "Layer 'Defibrillators' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wheelchair", - "description": "Layer 'Defibrillators' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wheelchair", - "description": "Layer 'Defibrillators' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "wheelchair", - "description": "Layer 'Defibrillators' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "ref", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `ref` are shown with \"Official identification number of the device: {ref}\" and can be updated. The question is \"What is the official identification number of the device? (if visible on device)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_ref", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "email", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `email` are shown with \"Email for questions about this defibrillator: {email}\" and can be updated. The question is \"What is the email for questions about this defibrillator?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_email", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "phone", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `phone` are shown with \"Telephone for questions about this defibrillator: {phone}\" and can be updated. The question is \"What is the phone number for questions about this defibrillator?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_phone", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "opening_hours", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"At what times is this defibrillator available?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "opening_hours", - "description": "Layer 'Defibrillators' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Defibrillators' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "closed" - }, - { - "key": "opening_hours", - "description": "Layer 'Defibrillators' shows opening_hours=unknown with a fixed text, namely 'Not accessible 24/7, but the exact hours are unknown' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "unknown" + "value": "unknown", + "description": "opening_hours=unknown is displayed as \"Not accessible 24/7, but the exact hours are unknown\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7", + "icon_url": "./assets/layers/barrier/barrier.svg" }, { "key": "description", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `description` are shown with \"Additional information: {description}\" and can be updated. The question is \"Is there any useful information for users that you haven't been able to describe above? (leave blank if no)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_description", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "survey:date", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `survey:date` are shown with \"This defibrillator was last surveyed on {survey:date}\" and can be updated. The question is \"When was this defibrillator last surveyed?\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_survey_date", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "survey:date", - "description": "Layer 'Defibrillators' shows survey:date= with a fixed text, namely 'Checked today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') Picking this answer will delete the key survey:date.", - "value": "" + "description": "survey:date= is displayed as \"Checked today!\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_survey_date", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "fixme", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `fixme` are shown with \"Extra information for OpenStreetMap experts: {fixme}\" and can be updated. The question is \"Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)\" by layer Defibrillators", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_fixme", + "icon_url": "./assets/layers/defibrillator/defibrillator.svg" }, { "key": "emergency", - "description": "The MapComplete theme Disaster response and emergency services has a layer Map of hydrants showing features with this tag", - "value": "fire_hydrant" - }, - { - "key": "id", - "description": "Layer 'Map of hydrants' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "fire_hydrant", + "description": "Features with this tag are displayed by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "colour", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `colour` are shown with \"The hydrant color is {colour}\" and can be updated. The question is \"What color is the hydrant?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "colour", - "description": "Layer 'Map of hydrants' shows colour=yellow with a fixed text, namely 'The hydrant color is yellow.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yellow" + "value": "yellow", + "description": "colour=yellow is displayed as \"The hydrant color is yellow.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "colour", - "description": "Layer 'Map of hydrants' shows colour=red with a fixed text, namely 'The hydrant color is red.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "red" + "value": "red", + "description": "colour=red is displayed as \"The hydrant color is red.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:type' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `fire_hydrant:type` are shown with \" Hydrant type: {fire_hydrant:type}\" and can be updated. The question is \"What type of hydrant is it?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type=pillar with a fixed text, namely 'Pillar type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "pillar" + "value": "pillar", + "description": "fire_hydrant:type=pillar is displayed as \"Pillar type.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant_pillar.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type=pipe with a fixed text, namely 'Pipe type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "pipe" + "value": "pipe", + "description": "fire_hydrant:type=pipe is displayed as \"Pipe type.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant_unknown.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type=wall with a fixed text, namely 'Wall type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "wall" + "value": "wall", + "description": "fire_hydrant:type=wall is displayed as \"Wall type.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant_unknown.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type=underground with a fixed text, namely 'Underground type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "underground" + "value": "underground", + "description": "fire_hydrant:type=underground is displayed as \"Underground type.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant_underground.svg" }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows emergency=fire_hydrant with a fixed text, namely 'The hydrant is (fully or partially) working' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "fire_hydrant" + "value": "fire_hydrant", + "description": "emergency=fire_hydrant is displayed as \"The hydrant is (fully or partially) working\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "disused:emergency", - "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "fire_hydrant" + "value": "fire_hydrant", + "description": "disused:emergency=fire_hydrant & emergency= is displayed as \"The hydrant is unavailable\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') Picking this answer will delete the key emergency.", - "value": "" + "description": "disused:emergency=fire_hydrant & emergency= is displayed as \"The hydrant is unavailable\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "removed:emergency", - "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "fire_hydrant" + "value": "fire_hydrant", + "description": "removed:emergency=fire_hydrant & emergency= is displayed as \"The hydrant has been removed\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') Picking this answer will delete the key emergency.", - "value": "" + "description": "removed:emergency=fire_hydrant & emergency= is displayed as \"The hydrant has been removed\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "fire_hydrant:diameter", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:diameter' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `fire_hydrant:diameter` are shown with \"Pipe diameter: {canonical(fire_hydrant:diameter)}\" and can be updated. The question is \"What is the pipe diameter of this hydrant?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_diameter", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "couplings", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `couplings` are shown with \"Number of couplings: {couplings}\" and can be updated. The question is \"How many couplings does this fire hydrant have?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_number_of_couplings", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "couplings:type", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:type' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `couplings:type` are shown with \"Couplings: {couplings:type}\" and can be updated. The question is \"What kind of couplings does this hydrant have?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "couplings:type", - "description": "Layer 'Map of hydrants' shows couplings:type=Storz with a fixed text, namely 'Storz coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "Storz" + "value": "Storz", + "description": "couplings:type=Storz is displayed as \"Storz coupling\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings", + "icon_url": "./assets/layers/hydrant/storz.jpg" }, { "key": "couplings:type", - "description": "Layer 'Map of hydrants' shows couplings:type=UNI with a fixed text, namely 'UNI coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "UNI" + "value": "UNI", + "description": "couplings:type=UNI is displayed as \"UNI coupling\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "couplings:type", - "description": "Layer 'Map of hydrants' shows couplings:type=Barcelona with a fixed text, namely 'Barcelona coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "Barcelona" + "value": "Barcelona", + "description": "couplings:type=Barcelona is displayed as \"Barcelona coupling\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings", + "icon_url": "./assets/layers/hydrant/barcelona.jpg" }, { "key": "couplings:diameters", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:diameters' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "image", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Values of `couplings:diameters` are shown with \"Coupling diameters: {couplings:diameters}\" and can be updated. The question is \"What diameter are the couplings of this hydrant?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings_diameters", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Disaster response and emergency services has a layer Doctors showing features with this tag", - "value": "doctors" - }, - { - "key": "id", - "description": "Layer 'Doctors' 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 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and 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 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and 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 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and 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 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and 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 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "doctors", + "description": "Features with this tag are displayed by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "name", - "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `name` are shown with \"This doctors place is called {name}\" and can be updated. The question is \"What is the name of this doctors place?\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#name", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "opening_hours", - "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "value": "\"by appointment\"", + "description": "opening_hours=\"by appointment\" is displayed as \"Only by appointment\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours=\"by appointment\" with a fixed text, namely 'Only by appointment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "\"by appointment\"" - }, - { - "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:phone", - "description": "Layer 'Doctors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "email", - "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:email", - "description": "Layer 'Doctors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "operator:email", - "description": "Layer 'Doctors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "website", - "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:website", - "description": "Layer 'Doctors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "addr:street", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" - }, - { - "key": "addr:unit", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Doctors' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if nohousenumber!~^(yes)$)" - }, - { - "key": "addr:unit", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "addr:unit", - "description": "Layer 'Doctors' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') Picking this answer will delete the key addr:unit.", - "value": "" + "description": "opening_hours~^(\"by appointment\"|by appointment)$ is displayed as \"Only by appointment\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `healthcare:speciality` are shown with \"This doctor is specialized in {healthcare:speciality}\" and can be updated. The question is \"What is this doctor specialized in?\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=general with a fixed text, namely 'This is a general practitioner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "general" + "value": "general", + "description": "healthcare:speciality=general is displayed as \"This is a general practitioner\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=gynaecology with a fixed text, namely 'This is a gynaecologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "gynaecology" + "value": "gynaecology", + "description": "healthcare:speciality=gynaecology is displayed as \"This is a gynaecologist\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=psychiatry with a fixed text, namely 'This is a psychiatrist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "psychiatry" + "value": "psychiatry", + "description": "healthcare:speciality=psychiatry is displayed as \"This is a psychiatrist\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=paediatrics with a fixed text, namely 'This is a paediatrician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "paediatrics" + "value": "paediatrics", + "description": "healthcare:speciality=paediatrics is displayed as \"This is a paediatrician\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "emergency", - "description": "The MapComplete theme Disaster response and emergency services has a layer Map of ambulance stations showing features with this tag", - "value": "ambulance_station" - }, - { - "key": "id", - "description": "Layer 'Map of ambulance stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "ambulance_station", + "description": "Features with this tag are displayed by layer Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md", + "icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg" }, { "key": "name", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Disaster response and emergency services')" + "description": "Values of `name` are shown with \"This station is called {name}.\" and can be updated. The question is \"What is the name of this ambulance station?\" by layer Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md#ambulance_name", + "icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg" }, { "key": "addr:street", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "addr:place", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:place' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "operator", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator:type' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows operator:type=government with a fixed text, namely 'The station is operated by the government.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "government" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows operator:type=community with a fixed text, namely 'The station is operated by a community-based, or informal organization.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "community" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows operator:type=ngo with a fixed text, namely 'The station is operated by a formal group of volunteers.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "ngo" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows operator:type=private with a fixed text, namely 'The station is privately operated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "private" - }, - { - "key": "image", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Values of `addr:street` are shown with \"This station is along a highway called {addr:street}.\" and can be updated. The question is \"What is the street name where the station located?\" by layer Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md#ambulance_street", + "icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg" }, { "key": "amenity", - "description": "The MapComplete theme Disaster response and emergency services has a layer Pharmacies showing features with this tag", - "value": "pharmacy" - }, - { - "key": "id", - "description": "Layer 'Pharmacies' 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 'Disaster response and emergency services') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "pharmacy", + "description": "Features with this tag are displayed by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "name", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "opening_hours", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "opening_hours", - "description": "Layer 'Pharmacies' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:phone", - "description": "Layer 'Pharmacies' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "email", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:email", - "description": "Layer 'Pharmacies' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "operator:email", - "description": "Layer 'Pharmacies' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "website", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "contact:website", - "description": "Layer 'Pharmacies' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "addr:street", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" - }, - { - "key": "addr:unit", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Pharmacies' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Disaster response and emergency services') (This is only shown if nohousenumber!~^(yes)$)" - }, - { - "key": "addr:unit", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Disaster response and emergency services')" - }, - { - "key": "addr:unit", - "description": "Layer 'Pharmacies' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services') Picking this answer will delete the key addr:unit.", - "value": "" + "description": "Values of `name` are shown with \"This pharmacy is called {name}\" and can be updated. The question is \"What is the name of the pharmacy?\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#name", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "payment:cash", - "description": "Layer 'Pharmacies' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Pharmacies' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Pharmacies' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Disaster response and emergency services')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_drinking_water.json b/Docs/TagInfo/mapcomplete_drinking_water.json index 365485b68b..0da2418356 100644 --- a/Docs/TagInfo/mapcomplete_drinking_water.json +++ b/Docs/TagInfo/mapcomplete_drinking_water.json @@ -7,269 +7,376 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/drinking_water/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag", - "value": "drinking_water" + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "drinking_water", - "description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag", - "value": "drinking_water" + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "id", - "description": "Layer 'Drinking water' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "panoramax", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "mapillary", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "wikidata", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "wikipedia", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the mapcomplete.org theme 'Drinking Water')" + "description": "Values of `operational_status` are shown with \"The operational status is {operational_status}\" and can be updated. The question is \"Is this drinking water spot still operational?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This drinking water is broken\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This drinking water is closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "Layer 'Drinking water' shows disused:amenity=drinking_water with a fixed text, namely 'This drinking water is permanently closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "drinking_water" + "value": "drinking_water", + "description": "disused:amenity=drinking_water is displayed as \"This drinking water is permanently closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fee", - "description": "Layer 'Drinking water' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fee", - "description": "Layer 'Drinking water' shows fee=yes with a fixed text, namely 'One needs to pay to use this drinking water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"One needs to pay to use this drinking water point\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bubbler with a fixed text, namely 'This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "bubbler" + "value": "bubbler", + "description": "fountain=bubbler is displayed as \"This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bubbler.svg" }, { "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bottle_refill with a fixed text, namely 'This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "bottle_refill" + "value": "bottle_refill", + "description": "fountain=bottle_refill is displayed as \"This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bottle.svg" }, { "key": "man_made", - "description": "Layer 'Drinking water' shows man_made=water_tap with a fixed text, namely 'This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "water_tap" + "value": "water_tap", + "description": "man_made=water_tap is displayed as \"This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/tap.svg" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if fountain!=bottle_refill)", - "value": "yes" + "value": "yes", + "description": "bottle=yes is displayed as \"It is easy to refill water bottles\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if fountain!=bottle_refill)", - "value": "no" + "value": "no", + "description": "bottle=no is displayed as \"Water bottles may not fit\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "iced_water", - "description": "Layer 'Drinking water' shows iced_water=yes with a fixed text, namely 'Ice-cold water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "yes" + "value": "yes", + "description": "iced_water=yes is displayed as \"Ice-cold water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "cold_water", - "description": "Layer 'Drinking water' shows cold_water=yes with a fixed text, namely 'Actively cooled water is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "yes" + "value": "yes", + "description": "cold_water=yes is displayed as \"Actively cooled water is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "room_temperature_water", - "description": "Layer 'Drinking water' shows room_temperature_water=yes with a fixed text, namely 'Ambient temperature water (without active cooling or heating) is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "yes" + "value": "yes", + "description": "room_temperature_water=yes is displayed as \"Ambient temperature water (without active cooling or heating) is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "warm_water", - "description": "Layer 'Drinking water' shows warm_water=yes with a fixed text, namely 'Warmed water is provided here; the water is not dangerously hot' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "yes" + "value": "yes", + "description": "warm_water=yes is displayed as \"Warmed water is provided here; the water is not dangerously hot\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "hot_water", - "description": "Layer 'Drinking water' shows hot_water=yes with a fixed text, namely 'Hot water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "yes" + "value": "yes", + "description": "hot_water=yes is displayed as \"Hot water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "no" + "value": "no", + "description": "seasonal=no is displayed as \"Available all around the year\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "summer" + "value": "summer", + "description": "seasonal=summer is displayed as \"Only available in summer\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "spring;summer;autumn" + "value": "spring;summer;autumn", + "description": "seasonal=spring;summer;autumn is displayed as \"Closed during the winter\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/no_winter.svg" }, { "key": "opening_hours", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Drinking Water')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) with a fixed text, namely 'This drinking water fountain is closed this season. As such, the opening hours are not shown.' (in the mapcomplete.org theme 'Drinking Water')" + "description": "seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) is displayed as \"This drinking water fountain is closed this season. As such, the opening hours are not shown.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Drinking Water')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "tourism", - "description": "Layer 'Drinking water' shows tourism=artwork with a fixed text, namely 'This drinking water point has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This drinking water point has an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Drinking water' shows not:tourism:artwork=yes with a fixed text, namely 'This drinking water point does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This drinking water point does not have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "tourism", - "description": "Layer 'Drinking water' shows tourism= with a fixed text, namely 'This drinking water point probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Drinking Water') Picking this answer will delete the key tourism.", - "value": "" + "description": "tourism= is displayed as \"This drinking water point probably doesn't have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_wikidata", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artist_name", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_name", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "website", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_website", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_subject", + "icon_url": "./assets/layers/drinking_water/drips.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_education.json b/Docs/TagInfo/mapcomplete_education.json index 48929317ba..ecd83c8171 100644 --- a/Docs/TagInfo/mapcomplete_education.json +++ b/Docs/TagInfo/mapcomplete_education.json @@ -7,534 +7,609 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/school/college.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Education has a layer Childcare showing features with this tag", - "value": "childcare" + "value": "childcare", + "description": "Features with this tag are displayed by layer Childcare", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md" }, { "key": "id", - "description": "Layer 'Childcare' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Education') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Childcare, Primary and secondary schools, Colleges and universities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "name", - "description": "Layer 'Childcare' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Education')" + "description": "Values of `name` are shown with \"This facility is named {name}\" and can be updated. The question is \"What is the name of this facility?\" by layer Childcare", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#name" }, { "key": "website", - "description": "Layer 'Childcare' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Education')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Childcare, Primary and secondary schools, Colleges and universities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Childcare' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Education')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Childcare, Primary and secondary schools, Colleges and universities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Childcare' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Education')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Childcare, Primary and secondary schools, Colleges and universities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Childcare' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Education')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Childcare, Primary and secondary schools, Colleges and universities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Childcare' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Education')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Childcare, Primary and secondary schools, Colleges and universities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Childcare' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Education')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Childcare, Primary and secondary schools, Colleges and universities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Childcare' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Education')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Childcare, Primary and secondary schools, Colleges and universities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "opening_hours", - "description": "Layer 'Childcare' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Education') (This is only shown if amenity=childcare)" + "description": "Values of `opening_hours` are shown with \"

Opening hours

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

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#opening_hours_24_7", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "opening_hours", - "description": "Layer 'Penny Presses' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Penny Presses' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Penny Presses')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#opening_hours_24_7", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:design_count", - "description": "Layer 'Penny Presses' shows and asks freeform values for key 'coin:design_count' (in the mapcomplete.org theme 'Penny Presses')" + "description": "Values of `coin:design_count` are shown with \"This penny press has {coin:design_count} designs available.\" and can be updated. The question is \"How many designs are available?\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#designs", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:design_count", - "description": "Layer 'Penny Presses' shows coin:design_count=1 with a fixed text, namely 'This penny press has one design available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "1" + "value": "1", + "description": "coin:design_count=1 is displayed as \"This penny press has one design available.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#designs", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:design_count", - "description": "Layer 'Penny Presses' shows coin:design_count=2 with a fixed text, namely 'This penny press has two designs available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "2" + "value": "2", + "description": "coin:design_count=2 is displayed as \"This penny press has two designs available.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#designs", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:design_count", - "description": "Layer 'Penny Presses' shows coin:design_count=3 with a fixed text, namely 'This penny press has three designs available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "3" + "value": "3", + "description": "coin:design_count=3 is displayed as \"This penny press has three designs available.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#designs", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:design_count", - "description": "Layer 'Penny Presses' shows coin:design_count=4 with a fixed text, namely 'This penny press has four designs available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "4" + "value": "4", + "description": "coin:design_count=4 is displayed as \"This penny press has four designs available.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#designs", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "fee", - "description": "Layer 'Penny Presses' shows fee= with a fixed text, namely 'It costs money to press a penny.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') Picking this answer will delete the key fee.", - "value": "" + "description": "fee= is displayed as \"It costs money to press a penny.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#fee", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "fee", - "description": "Layer 'Penny Presses' shows fee=yes with a fixed text, namely 'It costs money to press a penny.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"It costs money to press a penny.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#fee", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "fee", - "description": "Layer 'Penny Presses' shows fee=no with a fixed text, namely 'It is free to press a penny.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"It is free to press a penny.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#fee", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "payment:cash", - "description": "Layer 'Penny Presses' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#payment_options_split", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Penny Presses' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Penny Presses' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#payment_options_split", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:coins", - "description": "Layer 'Penny Presses' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Penny Presses' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Penny Presses' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Penny Presses' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "coin:type", - "description": "Layer 'Penny Presses' shows and asks freeform values for key 'coin:type' (in the mapcomplete.org theme 'Penny Presses')" + "description": "Values of `coin:type` are shown with \"This penny press uses a {coin:type} coin for pressing.\" and can be updated. The question is \"What coin is used for pressing?\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#coin", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:type", - "description": "Layer 'Penny Presses' shows coin:type=2cent with a fixed text, namely 'This penny press uses a 2 cent coin for pressing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "2cent" + "value": "2cent", + "description": "coin:type=2cent is displayed as \"This penny press uses a 2 cent coin for pressing.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#coin", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:type", - "description": "Layer 'Penny Presses' shows coin:type=5cent with a fixed text, namely 'This penny press uses a 5 cent coin for pressing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "5cent" + "value": "5cent", + "description": "coin:type=5cent is displayed as \"This penny press uses a 5 cent coin for pressing.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#coin", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:type", - "description": "Layer 'Penny Presses' shows coin:type=10cent with a fixed text, namely 'This penny press uses a 10 cent coin for pressing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "10cent" + "value": "10cent", + "description": "coin:type=10cent is displayed as \"This penny press uses a 10 cent coin for pressing.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#coin", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:type", - "description": "Layer 'Penny Presses' shows coin:type=25cent with a fixed text, namely 'This penny press uses a 25 cent coin for pressing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "25cent" + "value": "25cent", + "description": "coin:type=25cent is displayed as \"This penny press uses a 25 cent coin for pressing.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#coin", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:type", - "description": "Layer 'Penny Presses' shows coin:type=50cent with a fixed text, namely 'This penny press uses a 50 cent coin for pressing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "50cent" + "value": "50cent", + "description": "coin:type=50cent is displayed as \"This penny press uses a 50 cent coin for pressing.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#coin", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:type", - "description": "Layer 'Penny Presses' shows coin:type=10centimes with a fixed text, namely 'This penny press uses a 10 centimes coin for pressing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "10centimes" + "value": "10centimes", + "description": "coin:type=10centimes is displayed as \"This penny press uses a 10 centimes coin for pressing.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#coin", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:type", - "description": "Layer 'Penny Presses' shows coin:type=20centimes with a fixed text, namely 'This penny press uses a 20 centimes coin for pressing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "20centimes" + "value": "20centimes", + "description": "coin:type=20centimes is displayed as \"This penny press uses a 20 centimes coin for pressing.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#coin", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "website", - "description": "Layer 'Penny Presses' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Penny Presses')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Penny Presses' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Penny Presses')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "charge", - "description": "Layer 'Penny Presses' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)" + "description": "Values of `charge` are shown with \"It costs {charge} to press a penny.\" and can be updated. The question is \"How much does it cost to press a penny?\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#charge", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "charge", - "description": "Layer 'Penny Presses' shows charge=1 EUR with a fixed text, namely 'It costs 1 euro to press a penny.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "1 EUR" + "value": "1 EUR", + "description": "charge=1 EUR is displayed as \"It costs 1 euro to press a penny.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#charge", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "charge", - "description": "Layer 'Penny Presses' shows charge=2 EUR with a fixed text, namely 'It costs 2 euros to press a penny.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "2 EUR" + "value": "2 EUR", + "description": "charge=2 EUR is displayed as \"It costs 2 euros to press a penny.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#charge", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "charge", - "description": "Layer 'Penny Presses' shows charge=2 CHF with a fixed text, namely 'It costs 2 Swiss francs to press a penny.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "2 CHF" + "value": "2 CHF", + "description": "charge=2 CHF is displayed as \"It costs 2 Swiss francs to press a penny.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#charge", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "charge", - "description": "Layer 'Penny Presses' shows charge=1 CHF with a fixed text, namely 'It costs 1 Swiss franc to press a penny.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if fee=yes | fee=)", - "value": "1 CHF" + "value": "1 CHF", + "description": "charge=1 CHF is displayed as \"It costs 1 Swiss franc to press a penny.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#charge", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.01 EUR with a fixed text, namely '1 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.01 EUR" + "value": "0.01 EUR", + "description": "payment:coins:denominations=0.01 EUR is displayed as \"1 cent coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/1cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.02 EUR with a fixed text, namely '2 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.02 EUR" + "value": "0.02 EUR", + "description": "payment:coins:denominations=0.02 EUR is displayed as \"2 cent coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/2cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.05 EUR with a fixed text, namely '5 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 EUR" + "value": "0.05 EUR", + "description": "payment:coins:denominations=0.05 EUR is displayed as \"5 cent coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/5cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.10 EUR with a fixed text, namely '10 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 EUR" + "value": "0.10 EUR", + "description": "payment:coins:denominations=0.10 EUR is displayed as \"10 cent coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/10cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.20 EUR with a fixed text, namely '20 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 EUR" + "value": "0.20 EUR", + "description": "payment:coins:denominations=0.20 EUR is displayed as \"20 cent coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/20cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.50 EUR with a fixed text, namely '50 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 EUR" + "value": "0.50 EUR", + "description": "payment:coins:denominations=0.50 EUR is displayed as \"50 cent coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/50cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=1 EUR with a fixed text, namely '1 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 EUR" + "value": "1 EUR", + "description": "payment:coins:denominations=1 EUR is displayed as \"1 euro coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/1euro.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=2 EUR with a fixed text, namely '2 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 EUR" + "value": "2 EUR", + "description": "payment:coins:denominations=2 EUR is displayed as \"2 euro coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/2euro.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.05 CHF with a fixed text, namely '5 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 CHF" + "value": "0.05 CHF", + "description": "payment:coins:denominations=0.05 CHF is displayed as \"5 centimes coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/5rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.10 CHF with a fixed text, namely '10 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 CHF" + "value": "0.10 CHF", + "description": "payment:coins:denominations=0.10 CHF is displayed as \"10 centimes coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/10rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.20 CHF with a fixed text, namely '20 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 CHF" + "value": "0.20 CHF", + "description": "payment:coins:denominations=0.20 CHF is displayed as \"20 centimes coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/20rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=0.50 CHF with a fixed text, namely '½ franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 CHF" + "value": "0.50 CHF", + "description": "payment:coins:denominations=0.50 CHF is displayed as \"½ franc coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/50rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=1 CHF with a fixed text, namely '1 franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 CHF" + "value": "1 CHF", + "description": "payment:coins:denominations=1 CHF is displayed as \"1 franc coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/1fr-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=2 CHF with a fixed text, namely '2 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 CHF" + "value": "2 CHF", + "description": "payment:coins:denominations=2 CHF is displayed as \"2 francs coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/2fr-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Penny Presses' shows payment:coins:denominations=5 CHF with a fixed text, namely '5 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 CHF" + "value": "5 CHF", + "description": "payment:coins:denominations=5 CHF is displayed as \"5 francs coins are accepted\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/5fr-2019-800px.png" }, { "key": "indoor", - "description": "Layer 'Penny Presses' shows indoor=yes with a fixed text, namely 'This penny press is located indoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This penny press is located indoors.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#indoor", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "indoor", - "description": "Layer 'Penny Presses' shows indoor=no with a fixed text, namely 'This penny press is located outdoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This penny press is located outdoors.\" by layer Penny Presses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#indoor", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "level", - "description": "Layer 'Penny Presses' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#single_level", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "location", - "description": "Layer 'Penny Presses' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#single_level", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "level", - "description": "Layer 'Penny Presses' 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 'Penny Presses') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#single_level", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "level", - "description": "Layer 'Penny Presses' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Penny Presses') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#single_level", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "level", - "description": "Layer 'Penny Presses' 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 'Penny Presses') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#single_level", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "level", - "description": "Layer 'Penny Presses' 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 'Penny Presses') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#single_level", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "check_date", - "description": "Layer 'Penny Presses' shows and asks freeform values for key 'check_date' (in the mapcomplete.org theme 'Penny Presses')" + "description": "Values of `check_date` are shown with \"This object was last checked on {check_date}\" and can be updated. The question is \"When was this object last checked?\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#check_date", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "check_date", - "description": "Layer 'Penny Presses' shows check_date= with a fixed text, namely 'This object was last checked today' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') Picking this answer will delete the key check_date.", - "value": "" - }, - { - "key": "amenity", - "description": "The MapComplete theme Penny Presses has a layer Souvenir Coin Machines showing features with this tag", - "value": "vending_machine" - }, - { - "key": "vending", - "description": "The MapComplete theme Penny Presses has a layer Souvenir Coin Machines showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Souvenir Coin Machines' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Souvenir Coin Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Souvenir Coin Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Souvenir Coin Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Souvenir Coin Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Souvenir Coin Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "opening_hours", - "description": "Layer 'Souvenir Coin Machines' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Penny Presses')" - }, - { - "key": "opening_hours", - "description": "Layer 'Souvenir Coin Machines' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Souvenir Coin Machines' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Penny Presses')", - "value": "closed" + "description": "check_date= is displayed as \"This object was last checked today\" by layers Penny Presses, Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elongated_coin.md#check_date", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "coin:design_count", - "description": "Layer 'Souvenir Coin Machines' shows and asks freeform values for key 'coin:design_count' (in the mapcomplete.org theme 'Penny Presses')" + "description": "Values of `coin:design_count` are shown with \"This machine has {coin:design_count} designs available\" and can be updated. The question is \"How many designs are available?\" by layer Souvenir Coin Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#designs", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "coin:design_count", - "description": "Layer 'Souvenir Coin Machines' shows coin:design_count=1 with a fixed text, namely 'This machine has one design available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "1" + "value": "1", + "description": "coin:design_count=1 is displayed as \"This machine has one design available\" by layer Souvenir Coin Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#designs", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "coin:design_count", - "description": "Layer 'Souvenir Coin Machines' shows coin:design_count=2 with a fixed text, namely 'This machine has two designs available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "2" + "value": "2", + "description": "coin:design_count=2 is displayed as \"This machine has two designs available\" by layer Souvenir Coin Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#designs", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "coin:design_count", - "description": "Layer 'Souvenir Coin Machines' shows coin:design_count=3 with a fixed text, namely 'This machine has three designs available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "3" + "value": "3", + "description": "coin:design_count=3 is displayed as \"This machine has three designs available\" by layer Souvenir Coin Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#designs", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "coin:design_count", - "description": "Layer 'Souvenir Coin Machines' shows coin:design_count=4 with a fixed text, namely 'This machine has four designs available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "4" - }, - { - "key": "payment:cash", - "description": "Layer 'Souvenir Coin Machines' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Souvenir Coin Machines' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Souvenir Coin Machines' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:coins", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:notes", - "description": "Layer 'Souvenir Coin Machines' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:debit_cards", - "description": "Layer 'Souvenir Coin Machines' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:credit_cards", - "description": "Layer 'Souvenir Coin Machines' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "website", - "description": "Layer 'Souvenir Coin Machines' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Penny Presses')" - }, - { - "key": "contact:website", - "description": "Layer 'Souvenir Coin Machines' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Penny Presses')" + "value": "4", + "description": "coin:design_count=4 is displayed as \"This machine has four designs available\" by layer Souvenir Coin Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#designs", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "charge", - "description": "Layer 'Souvenir Coin Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Penny Presses')" + "description": "Values of `charge` are shown with \"A souvenir coins costs {charge}\" and can be updated. The question is \"How much does a souvenir coin cost?\" by layer Souvenir Coin Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#charge", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "charge", - "description": "Layer 'Souvenir Coin Machines' shows charge=2 EUR with a fixed text, namely 'A souvenir coin costs 2 euro' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "2 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.01 EUR with a fixed text, namely '1 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.01 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.02 EUR with a fixed text, namely '2 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.02 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.05 EUR with a fixed text, namely '5 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.10 EUR with a fixed text, namely '10 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.20 EUR with a fixed text, namely '20 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.50 EUR with a fixed text, namely '50 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=1 EUR with a fixed text, namely '1 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=2 EUR with a fixed text, namely '2 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.05 CHF with a fixed text, namely '5 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.10 CHF with a fixed text, namely '10 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.20 CHF with a fixed text, namely '20 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=0.50 CHF with a fixed text, namely '½ franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=1 CHF with a fixed text, namely '1 franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=2 CHF with a fixed text, namely '2 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Coin Machines' shows payment:coins:denominations=5 CHF with a fixed text, namely '5 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 CHF" + "value": "2 EUR", + "description": "charge=2 EUR is displayed as \"A souvenir coin costs 2 euro\" by layer Souvenir Coin Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#charge", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "indoor", - "description": "Layer 'Souvenir Coin Machines' shows indoor=yes with a fixed text, namely 'This machine is located indoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This machine is located indoors.\" by layers Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#indoor", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "indoor", - "description": "Layer 'Souvenir Coin Machines' shows indoor=no with a fixed text, namely 'This machine is located outdoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "no" - }, - { - "key": "level", - "description": "Layer 'Souvenir Coin Machines' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Souvenir Coin Machines' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Souvenir Coin Machines' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Souvenir Coin Machines' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Penny Presses') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Souvenir Coin Machines' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Souvenir Coin Machines' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "-1" - }, - { - "key": "check_date", - "description": "Layer 'Souvenir Coin Machines' shows and asks freeform values for key 'check_date' (in the mapcomplete.org theme 'Penny Presses')" - }, - { - "key": "check_date", - "description": "Layer 'Souvenir Coin Machines' shows check_date= with a fixed text, namely 'This object was last checked today' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') Picking this answer will delete the key check_date.", - "value": "" - }, - { - "key": "amenity", - "description": "The MapComplete theme Penny Presses has a layer Souvenir Banknote Machines showing features with this tag", - "value": "vending_machine" - }, - { - "key": "vending", - "description": "The MapComplete theme Penny Presses has a layer Souvenir Banknote Machines showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Souvenir Banknote Machines' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Souvenir Banknote Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Souvenir Banknote Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Souvenir Banknote Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Souvenir Banknote Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Souvenir Banknote Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "opening_hours", - "description": "Layer 'Souvenir Banknote Machines' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Penny Presses')" - }, - { - "key": "opening_hours", - "description": "Layer 'Souvenir Banknote Machines' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Souvenir Banknote Machines' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Penny Presses')", - "value": "closed" + "value": "no", + "description": "indoor=no is displayed as \"This machine is located outdoors.\" by layers Souvenir Coin Machines, Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_coin.md#indoor", + "icon_url": "./assets/layers/souvenir_coin/souvenir_coin.svg" }, { "key": "note:design_count", - "description": "Layer 'Souvenir Banknote Machines' shows and asks freeform values for key 'note:design_count' (in the mapcomplete.org theme 'Penny Presses')" + "description": "Values of `note:design_count` are shown with \"This machine has {note:design_count} designs available.\" and can be updated. The question is \"How many designs are available?\" by layer Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_note.md#designs", + "icon_url": "./assets/layers/souvenir_note/souvenir_note.svg" }, { "key": "note:design_count", - "description": "Layer 'Souvenir Banknote Machines' shows note:design_count=1 with a fixed text, namely 'This machine has one design available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "1" + "value": "1", + "description": "note:design_count=1 is displayed as \"This machine has one design available.\" by layer Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_note.md#designs", + "icon_url": "./assets/layers/souvenir_note/souvenir_note.svg" }, { "key": "note:design_count", - "description": "Layer 'Souvenir Banknote Machines' shows note:design_count=2 with a fixed text, namely 'This machine has two designs available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "2" + "value": "2", + "description": "note:design_count=2 is displayed as \"This machine has two designs available.\" by layer Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_note.md#designs", + "icon_url": "./assets/layers/souvenir_note/souvenir_note.svg" }, { "key": "note:design_count", - "description": "Layer 'Souvenir Banknote Machines' shows note:design_count=3 with a fixed text, namely 'This machine has three designs available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "3" + "value": "3", + "description": "note:design_count=3 is displayed as \"This machine has three designs available.\" by layer Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_note.md#designs", + "icon_url": "./assets/layers/souvenir_note/souvenir_note.svg" }, { "key": "note:design_count", - "description": "Layer 'Souvenir Banknote Machines' shows note:design_count=4 with a fixed text, namely 'This machine has four designs available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "4" - }, - { - "key": "payment:cash", - "description": "Layer 'Souvenir Banknote Machines' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Souvenir Banknote Machines' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Souvenir Banknote Machines' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:coins", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:notes", - "description": "Layer 'Souvenir Banknote Machines' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:debit_cards", - "description": "Layer 'Souvenir Banknote Machines' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "payment:credit_cards", - "description": "Layer 'Souvenir Banknote Machines' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "website", - "description": "Layer 'Souvenir Banknote Machines' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Penny Presses')" - }, - { - "key": "contact:website", - "description": "Layer 'Souvenir Banknote Machines' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Penny Presses')" + "value": "4", + "description": "note:design_count=4 is displayed as \"This machine has four designs available.\" by layer Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_note.md#designs", + "icon_url": "./assets/layers/souvenir_note/souvenir_note.svg" }, { "key": "charge", - "description": "Layer 'Souvenir Banknote Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Penny Presses')" + "description": "Values of `charge` are shown with \"A souvenir note costs {charge}\" and can be updated. The question is \"How much does a souvenir note cost?\" by layer Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_note.md#charge", + "icon_url": "./assets/layers/souvenir_note/souvenir_note.svg" }, { "key": "charge", - "description": "Layer 'Souvenir Banknote Machines' shows charge=2 EUR with a fixed text, namely 'A souvenir note costs 2 euro' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "2 EUR" + "value": "2 EUR", + "description": "charge=2 EUR is displayed as \"A souvenir note costs 2 euro\" by layer Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_note.md#charge", + "icon_url": "./assets/layers/souvenir_note/souvenir_note.svg" }, { "key": "charge", - "description": "Layer 'Souvenir Banknote Machines' shows charge=3 EUR with a fixed text, namely 'A souvenir note costs 3 euro' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "3 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.01 EUR with a fixed text, namely '1 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.01 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.02 EUR with a fixed text, namely '2 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.02 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.05 EUR with a fixed text, namely '5 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.10 EUR with a fixed text, namely '10 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.20 EUR with a fixed text, namely '20 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.50 EUR with a fixed text, namely '50 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=1 EUR with a fixed text, namely '1 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=2 EUR with a fixed text, namely '2 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 EUR" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.05 CHF with a fixed text, namely '5 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.10 CHF with a fixed text, namely '10 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.20 CHF with a fixed text, namely '20 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=0.50 CHF with a fixed text, namely '½ franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=1 CHF with a fixed text, namely '1 franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=2 CHF with a fixed text, namely '2 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 CHF" - }, - { - "key": "payment:coins:denominations", - "description": "Layer 'Souvenir Banknote Machines' shows payment:coins:denominations=5 CHF with a fixed text, namely '5 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 CHF" - }, - { - "key": "indoor", - "description": "Layer 'Souvenir Banknote Machines' shows indoor=yes with a fixed text, namely 'This machine is located indoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "yes" - }, - { - "key": "indoor", - "description": "Layer 'Souvenir Banknote Machines' shows indoor=no with a fixed text, namely 'This machine is located outdoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses')", - "value": "no" - }, - { - "key": "level", - "description": "Layer 'Souvenir Banknote Machines' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Souvenir Banknote Machines' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Souvenir Banknote Machines' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Souvenir Banknote Machines' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Penny Presses') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Souvenir Banknote Machines' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Souvenir Banknote Machines' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') (This is only shown if repeat_on=)", - "value": "-1" - }, - { - "key": "check_date", - "description": "Layer 'Souvenir Banknote Machines' shows and asks freeform values for key 'check_date' (in the mapcomplete.org theme 'Penny Presses')" - }, - { - "key": "check_date", - "description": "Layer 'Souvenir Banknote Machines' shows check_date= with a fixed text, namely 'This object was last checked today' and allows to pick this as a default answer (in the mapcomplete.org theme 'Penny Presses') Picking this answer will delete the key check_date.", - "value": "" + "value": "3 EUR", + "description": "charge=3 EUR is displayed as \"A souvenir note costs 3 euro\" by layer Souvenir Banknote Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/souvenir_note.md#charge", + "icon_url": "./assets/layers/souvenir_note/souvenir_note.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_etymology.json b/Docs/TagInfo/mapcomplete_etymology.json index e4ab9cd604..9a59531095 100644 --- a/Docs/TagInfo/mapcomplete_etymology.json +++ b/Docs/TagInfo/mapcomplete_etymology.json @@ -7,690 +7,285 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/etymology/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "name:etymology:wikidata", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Has etymology showing features with this tag" + "description": "Features with this tag are displayed by layer Has etymology", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md", + "icon_url": "pin" }, { "key": "name:etymology", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Has etymology showing features with this tag" + "description": "Features with this tag are displayed by layer Has etymology", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md", + "icon_url": "pin" }, { "key": "id", - "description": "Layer 'Has etymology' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "panoramax", - "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "mapillary", - "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "wikidata", - "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "wikipedia", - "description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "name:etymology:wikidata", - "description": "Layer 'Has etymology' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" + "description": "Values of `name:etymology:wikidata` are shown with \"

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}\" and can be updated. The question is \"What is the Wikidata-item that this object is named after?\" by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#wikipedia_etymology", + "icon_url": "pin" }, { "key": "name:etymology", - "description": "Layer 'Has etymology' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" + "description": "Values of `name:etymology` are shown with \"Named after {name:etymology}\" and can be updated. The question is \"What is this object named after?\" by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#simple_etymology", + "icon_url": "pin" }, { "key": "name:etymology", - "description": "Layer 'Has etymology' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" + "value": "unknown", + "description": "name:etymology=unknown is displayed as \"The origin of this name is unknown in all literature\" by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#simple_etymology", + "icon_url": "pin" }, { "key": "image", - "description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "panoramax", - "description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "mapillary", - "description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "wikidata", - "description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "wikipedia", - "description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images", + "icon_url": "pin" }, { "key": "name", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Streets without etymology information showing features with this tag" + "description": "Features with this tag are displayed by layers Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/streets_without_etymology.md", + "icon_url": "pin" }, { "key": "highway", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Streets without etymology information showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Streets without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name:etymology:wikidata", - "description": "Layer 'Streets without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" - }, - { - "key": "name:etymology", - "description": "Layer 'Streets without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" - }, - { - "key": "name:etymology", - "description": "Layer 'Streets without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" - }, - { - "key": "image", - "description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks and forests without etymology information showing features with this tag" + "description": "Features with this tag are displayed by layer Streets without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/streets_without_etymology.md", + "icon_url": "pin" }, { "key": "leisure", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks and forests without etymology information showing features with this tag", - "value": "park" + "value": "park", + "description": "Features with this tag are displayed by layers Parks and forests without etymology information, Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parks_and_forests_without_etymology.md", + "icon_url": "pin" }, { "key": "landuse", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks and forests without etymology information showing features with this tag", - "value": "forest" - }, - { - "key": "id", - "description": "Layer 'Parks and forests without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name:etymology:wikidata", - "description": "Layer 'Parks and forests without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" - }, - { - "key": "name:etymology", - "description": "Layer 'Parks and forests without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" - }, - { - "key": "name:etymology", - "description": "Layer 'Parks and forests without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" - }, - { - "key": "image", - "description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag" + "value": "forest", + "description": "Features with this tag are displayed by layer Parks and forests without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parks_and_forests_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag", - "value": "school" + "value": "school", + "description": "Features with this tag are displayed by layer Education institutions without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag", - "value": "kindergarten" + "value": "kindergarten", + "description": "Features with this tag are displayed by layer Education institutions without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag", - "value": "university" + "value": "university", + "description": "Features with this tag are displayed by layer Education institutions without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag", - "value": "college" + "value": "college", + "description": "Features with this tag are displayed by layer Education institutions without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md", + "icon_url": "pin" }, { "key": "landuse", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag", - "value": "education" - }, - { - "key": "id", - "description": "Layer 'Education institutions without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name:etymology:wikidata", - "description": "Layer 'Education institutions without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" - }, - { - "key": "name:etymology", - "description": "Layer 'Education institutions without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" - }, - { - "key": "name:etymology", - "description": "Layer 'Education institutions without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" - }, - { - "key": "image", - "description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag" + "value": "education", + "description": "Features with this tag are displayed by layer Education institutions without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag", - "value": "arts_centre" + "value": "arts_centre", + "description": "Features with this tag are displayed by layer Cultural places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag", - "value": "cinema" + "value": "cinema", + "description": "Features with this tag are displayed by layer Cultural places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag", - "value": "community_centre" + "value": "community_centre", + "description": "Features with this tag are displayed by layer Cultural places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag", - "value": "library" + "value": "library", + "description": "Features with this tag are displayed by layer Cultural places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag", - "value": "theatre" - }, - { - "key": "id", - "description": "Layer 'Cultural places without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name:etymology:wikidata", - "description": "Layer 'Cultural places without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" - }, - { - "key": "name:etymology", - "description": "Layer 'Cultural places without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" - }, - { - "key": "name:etymology", - "description": "Layer 'Cultural places without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" - }, - { - "key": "image", - "description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag" + "value": "theatre", + "description": "Features with this tag are displayed by layer Cultural places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md", + "icon_url": "pin" }, { "key": "tourism", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag", - "value": "aquarium" + "value": "aquarium", + "description": "Features with this tag are displayed by layer Touristic places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toursistic_places_without_etymology.md", + "icon_url": "pin" }, { "key": "tourism", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag", - "value": "museum" + "value": "museum", + "description": "Features with this tag are displayed by layer Touristic places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toursistic_places_without_etymology.md", + "icon_url": "pin" }, { "key": "tourism", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag", - "value": "theme_park" + "value": "theme_park", + "description": "Features with this tag are displayed by layer Touristic places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toursistic_places_without_etymology.md", + "icon_url": "pin" }, { "key": "tourism", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag", - "value": "zoo" - }, - { - "key": "id", - "description": "Layer 'Touristic places without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name:etymology:wikidata", - "description": "Layer 'Touristic places without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" - }, - { - "key": "name:etymology", - "description": "Layer 'Touristic places without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" - }, - { - "key": "name:etymology", - "description": "Layer 'Touristic places without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" - }, - { - "key": "image", - "description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Health and social places without etymology information showing features with this tag" + "value": "zoo", + "description": "Features with this tag are displayed by layer Touristic places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toursistic_places_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Health and social places without etymology information showing features with this tag", - "value": "clinic" + "value": "clinic", + "description": "Features with this tag are displayed by layer Health and social places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/health_and_social_places_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Health and social places without etymology information showing features with this tag", - "value": "hospital" + "value": "hospital", + "description": "Features with this tag are displayed by layer Health and social places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/health_and_social_places_without_etymology.md", + "icon_url": "pin" }, { "key": "amenity", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Health and social places without etymology information showing features with this tag", - "value": "social_facility" - }, - { - "key": "id", - "description": "Layer 'Health and social places without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name:etymology:wikidata", - "description": "Layer 'Health and social places without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" - }, - { - "key": "name:etymology", - "description": "Layer 'Health and social places without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" - }, - { - "key": "name:etymology", - "description": "Layer 'Health and social places without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" - }, - { - "key": "image", - "description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Sport places without etymology information showing features with this tag" + "value": "social_facility", + "description": "Features with this tag are displayed by layer Health and social places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/health_and_social_places_without_etymology.md", + "icon_url": "pin" }, { "key": "leisure", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Sport places without etymology information showing features with this tag", - "value": "sports_centre" + "value": "sports_centre", + "description": "Features with this tag are displayed by layer Sport places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_places_without_etymology.md", + "icon_url": "pin" }, { "key": "leisure", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Sport places without etymology information showing features with this tag", - "value": "stadium" + "value": "stadium", + "description": "Features with this tag are displayed by layer Sport places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_places_without_etymology.md", + "icon_url": "pin" }, { "key": "leisure", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Sport places without etymology information showing features with this tag", - "value": "swimming_pool" - }, - { - "key": "id", - "description": "Layer 'Sport places without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name:etymology:wikidata", - "description": "Layer 'Sport places without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" - }, - { - "key": "name:etymology", - "description": "Layer 'Sport places without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" - }, - { - "key": "name:etymology", - "description": "Layer 'Sport places without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" - }, - { - "key": "image", - "description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks without etymology information showing features with this tag" - }, - { - "key": "leisure", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks without etymology information showing features with this tag", - "value": "park" + "value": "swimming_pool", + "description": "Features with this tag are displayed by layer Sport places without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_places_without_etymology.md", + "icon_url": "pin" }, { "key": "landuse", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks without etymology information showing features with this tag", - "value": "village_green" + "value": "village_green", + "description": "Features with this tag are displayed by layer Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parks_without_etymology.md", + "icon_url": "pin" }, { "key": "landuse", - "description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks without etymology information showing features with this tag", - "value": "recreation_ground" - }, - { - "key": "id", - "description": "Layer 'Parks without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name:etymology:wikidata", - "description": "Layer 'Parks without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)" - }, - { - "key": "name:etymology", - "description": "Layer 'Parks without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)" - }, - { - "key": "name:etymology", - "description": "Layer 'Parks without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)", - "value": "unknown" - }, - { - "key": "image", - "description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "recreation_ground", + "description": "Features with this tag are displayed by layer Parks without etymology information", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parks_without_etymology.md", + "icon_url": "pin" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_facadegardens.json b/Docs/TagInfo/mapcomplete_facadegardens.json index fd2c1720f0..7a08c560a0 100644 --- a/Docs/TagInfo/mapcomplete_facadegardens.json +++ b/Docs/TagInfo/mapcomplete_facadegardens.json @@ -7,109 +7,153 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/facadegardens/geveltuin.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "leisure", - "description": "The MapComplete theme Facade gardens has a layer Facade gardens showing features with this tag", - "value": "garden" + "value": "garden", + "description": "Features with this tag are displayed by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "garden:type", - "description": "The MapComplete theme Facade gardens has a layer Facade gardens showing features with this tag", - "value": "facade_garden" + "value": "facade_garden", + "description": "Features with this tag are displayed by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "id", - "description": "Layer 'Facade gardens' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Facade gardens') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "panoramax", - "description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "mapillary", - "description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "wikidata", - "description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "wikipedia", - "description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "direction", - "description": "Layer 'Facade gardens' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Facade gardens')" + "description": "Values of `direction` are shown with \"Orientation: {direction} (where 0=N and 90=O)\" and can be updated. The question is \"What is the orientation of the garden?\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_direction", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "direct_sunlight", - "description": "Layer 'Facade gardens' shows direct_sunlight=yes with a fixed text, namely 'The garden is in full sun' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "yes" + "value": "yes", + "description": "direct_sunlight=yes is displayed as \"The garden is in full sun\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_sunshine", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "direct_sunlight", - "description": "Layer 'Facade gardens' shows direct_sunlight=partial with a fixed text, namely 'The garden is in partial shade' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "partial" + "value": "partial", + "description": "direct_sunlight=partial is displayed as \"The garden is in partial shade\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_sunshine", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "direct_sunlight", - "description": "Layer 'Facade gardens' shows direct_sunlight=no with a fixed text, namely 'The garden is in the shade' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "no" + "value": "no", + "description": "direct_sunlight=no is displayed as \"The garden is in the shade\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_sunshine", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "rain_barrel", - "description": "Layer 'Facade gardens' shows rain_barrel=yes with a fixed text, namely 'There is a rain barrel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "yes" + "value": "yes", + "description": "rain_barrel=yes is displayed as \"There is a rain barrel\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_rainbarrel", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "rain_barrel", - "description": "Layer 'Facade gardens' shows rain_barrel=no with a fixed text, namely 'There is no rain barrel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "no" + "value": "no", + "description": "rain_barrel=no is displayed as \"There is no rain barrel\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_rainbarrel", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "start_date", - "description": "Layer 'Facade gardens' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Facade gardens')" + "description": "Values of `start_date` are shown with \"Construction date of the garden: {start_date}\" and can be updated. The question is \"When was the garden constructed? (a year is sufficient)\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_start_date", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "edible", - "description": "Layer 'Facade gardens' shows edible=yes with a fixed text, namely 'There are edible plants' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "yes" + "value": "yes", + "description": "edible=yes is displayed as \"There are edible plants\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_edible", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "edible", - "description": "Layer 'Facade gardens' shows edible=no with a fixed text, namely 'There are no edible plants' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "no" + "value": "no", + "description": "edible=no is displayed as \"There are no edible plants\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_edible", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "plant", - "description": "Layer 'Facade gardens' shows plant=vine with a fixed text, namely 'There are vines' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "vine" + "value": "vine", + "description": "plant=vine is displayed as \"There are vines\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_plants", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "plant", - "description": "Layer 'Facade gardens' shows plant=flower with a fixed text, namely 'There are flowering plants' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "flower" + "value": "flower", + "description": "plant=flower is displayed as \"There are flowering plants\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_plants", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "plant", - "description": "Layer 'Facade gardens' shows plant=shrub with a fixed text, namely 'There are shrubs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "shrub" + "value": "shrub", + "description": "plant=shrub is displayed as \"There are shrubs\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_plants", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "plant", - "description": "Layer 'Facade gardens' shows plant=groundcover with a fixed text, namely 'There are groundcovering plants' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')", - "value": "groundcover" + "value": "groundcover", + "description": "plant=groundcover is displayed as \"There are groundcovering plants\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_plants", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" }, { "key": "description", - "description": "Layer 'Facade gardens' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Facade gardens')" + "description": "Values of `description` are shown with \"More details: {description}\" and can be updated. The question is \"Extra describing info about the garden (if needed and not yet described above)\" by layer Facade gardens", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_description", + "icon_url": "./assets/themes/facadegardens/geveltuin.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_fireplace.json b/Docs/TagInfo/mapcomplete_fireplace.json index d5b5e327f2..2ed07e6317 100644 --- a/Docs/TagInfo/mapcomplete_fireplace.json +++ b/Docs/TagInfo/mapcomplete_fireplace.json @@ -7,171 +7,205 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/assembly_point/fire.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "leisure", - "description": "The MapComplete theme Fireplaces and barbeques has a layer Firepit showing features with this tag", - "value": "firepit" + "value": "firepit", + "description": "Features with this tag are displayed by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "id", - "description": "Layer 'Firepit' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Fireplaces and barbeques') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Firepit, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "panoramax", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "mapillary", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "wikidata", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "wikipedia", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "access", - "description": "Layer 'Firepit' shows access=yes with a fixed text, namely 'Public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "access", - "description": "Layer 'Firepit' shows access=no with a fixed text, namely 'No access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"No access\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "access", - "description": "Layer 'Firepit' shows access=private with a fixed text, namely 'Private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Private\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "access", - "description": "Layer 'Firepit' shows access=permissive with a fixed text, namely 'Access until revoked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "permissive" + "value": "permissive", + "description": "access=permissive is displayed as \"Access until revoked\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "access", - "description": "Layer 'Firepit' shows access=customers with a fixed text, namely 'Access only for customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Access only for customers\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "access", - "description": "Layer 'Firepit' shows access=permit with a fixed text, namely 'Access only for authorized' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "permit" + "value": "permit", + "description": "access=permit is displayed as \"Access only for authorized\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "seasonal", - "description": "Layer 'Firepit' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "no" + "value": "no", + "description": "seasonal=no is displayed as \"Available all around the year\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#seasonal", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "seasonal", - "description": "Layer 'Firepit' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "summer" + "value": "summer", + "description": "seasonal=summer is displayed as \"Only available in summer\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#seasonal", + "icon_url": "./assets/layers/assembly_point/fire.svg" }, { "key": "seasonal", - "description": "Layer 'Firepit' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "spring;summer;autumn" + "value": "spring;summer;autumn", + "description": "seasonal=spring;summer;autumn is displayed as \"Closed during the winter\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#seasonal", + "icon_url": "./assets/layers/drinking_water/no_winter.svg" }, { "key": "amenity", - "description": "The MapComplete theme Fireplaces and barbeques has a layer BBQ showing features with this tag", - "value": "bbq" - }, - { - "key": "id", - "description": "Layer 'BBQ' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Fireplaces and barbeques') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bbq", + "description": "Features with this tag are displayed by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=yes with a fixed text, namely 'This barbecue can be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"This barbecue can be used by anyone\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=no with a fixed text, namely 'This barbecue can't be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"This barbecue can't be used by anyone\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=private with a fixed text, namely 'This barbecue is private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"This barbecue is private\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=permissive with a fixed text, namely 'This barbecue can be used by anyone, but the owner can revoke access at any time' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "permissive" + "value": "permissive", + "description": "access=permissive is displayed as \"This barbecue can be used by anyone, but the owner can revoke access at any time\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=customers with a fixed text, namely 'This barbecue can only be used by customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"This barbecue can only be used by customers\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=permit with a fixed text, namely 'This barbecue can only be used by authorized persons' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "permit" + "value": "permit", + "description": "access=permit is displayed as \"This barbecue can only be used by authorized persons\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "covered", - "description": "Layer 'BBQ' shows covered=no with a fixed text, namely 'This barbecue is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "no" + "value": "no", + "description": "covered=no is displayed as \"This barbecue is not covered\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#covered", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "covered", - "description": "Layer 'BBQ' shows covered=yes with a fixed text, namely 'This barbecue is covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "yes" + "value": "yes", + "description": "covered=yes is displayed as \"This barbecue is covered\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#covered", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "fuel", - "description": "Layer 'BBQ' shows fuel=wood with a fixed text, namely 'This barbecue uses wood as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "wood" + "value": "wood", + "description": "fuel=wood is displayed as \"This barbecue uses wood as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "fuel", - "description": "Layer 'BBQ' shows fuel=charcoal with a fixed text, namely 'This barbecue uses charcoal as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "charcoal" + "value": "charcoal", + "description": "fuel=charcoal is displayed as \"This barbecue uses charcoal as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "fuel", - "description": "Layer 'BBQ' shows fuel=electric with a fixed text, namely 'This barbecue is powered by electricity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "electric" + "value": "electric", + "description": "fuel=electric is displayed as \"This barbecue is powered by electricity\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "fuel", - "description": "Layer 'BBQ' shows fuel=gas with a fixed text, namely 'This barbecue uses gas as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')", - "value": "gas" + "value": "gas", + "description": "fuel=gas is displayed as \"This barbecue uses gas as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_food.json b/Docs/TagInfo/mapcomplete_food.json index 287fe0431d..1e465c7e6b 100644 --- a/Docs/TagInfo/mapcomplete_food.json +++ b/Docs/TagInfo/mapcomplete_food.json @@ -7,1196 +7,1134 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/food/restaurant.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Restaurants and fast food has a layer Restaurants and fast food showing features with this tag", - "value": "fast_food" + "value": "fast_food", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Restaurants and fast food has a layer Restaurants and fast food showing features with this tag", - "value": "restaurant" + "value": "restaurant", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "id", - "description": "Layer 'Restaurants and fast food' 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 'Restaurants and fast food') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "name", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "Values of `name` are shown with \"The name of this business is {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Name", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "fast_food" + "value": "fast_food", + "description": "amenity=fast_food is displayed as \"This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "restaurant" + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant, focused on creating a nice experience where one is served at the table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Restaurants and fast food' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Restaurants and fast food' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Restaurants and fast food' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Restaurants and fast food' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Restaurants and fast food, Ice cream parlors, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "payment:cash", - "description": "Layer 'Restaurants and fast food' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Restaurants and fast food' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "location", - "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Restaurants and fast food') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Restaurants and fast food') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Restaurants and fast food') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Restaurants and fast food') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layers Restaurants and fast food, Ice cream parlors, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "Values of `cuisine` are shown with \"This place mostly serves {cuisine}\" and can be updated. The question is \"What kind of food is served here?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'Pizzeria' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "pizza" + "value": "pizza", + "description": "cuisine=pizza is displayed as \"Pizzeria\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'Friture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "friture" + "value": "friture", + "description": "cuisine=friture is displayed as \"Friture\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Serves mainly pasta' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "pasta" + "value": "pasta", + "description": "cuisine=pasta is displayed as \"Serves mainly pasta\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'Kebab shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "kebab" + "value": "kebab", + "description": "cuisine=kebab is displayed as \"Kebab shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'Sandwich shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "sandwich" + "value": "sandwich", + "description": "cuisine=sandwich is displayed as \"Sandwich shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgersrestaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "burger" + "value": "burger", + "description": "cuisine=burger is displayed as \"Burgersrestaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "sushi" + "value": "sushi", + "description": "cuisine=sushi is displayed as \"Sushi restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffeebar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "coffee" + "value": "coffee", + "description": "cuisine=coffee is displayed as \"Coffeebar\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'Italian restaurant (which serves more than pasta and pizza)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "italian" + "value": "italian", + "description": "cuisine=italian is displayed as \"Italian restaurant (which serves more than pasta and pizza)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "french" + "value": "french", + "description": "cuisine=french is displayed as \"French restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "chinese" + "value": "chinese", + "description": "cuisine=chinese is displayed as \"Chinese\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "greek" + "value": "greek", + "description": "cuisine=greek is displayed as \"Greek\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "indian" + "value": "indian", + "description": "cuisine=indian is displayed as \"Indian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "turkish" + "value": "turkish", + "description": "cuisine=turkish is displayed as \"Turkish restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "thai" + "value": "thai", + "description": "cuisine=thai is displayed as \"Thai restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=mexican with a fixed text, namely 'Mexican dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "mexican " + "value": "mexican ", + "description": "cuisine=mexican is displayed as \"Mexican dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=japanese with a fixed text, namely 'Japanese dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "japanese " + "value": "japanese ", + "description": "cuisine=japanese is displayed as \"Japanese dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chicken with a fixed text, namely 'Chicken based dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "chicken " + "value": "chicken ", + "description": "cuisine=chicken is displayed as \"Chicken based dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=seafood with a fixed text, namely 'Seafood dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "seafood " + "value": "seafood ", + "description": "cuisine=seafood is displayed as \"Seafood dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "image", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website:menu", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website:menu' (in the mapcomplete.org theme 'Restaurants and fast food')" + "description": "Values of `website:menu` are shown with \"{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage is the menu published?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#menu_website", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=required with a fixed text, namely 'A reservation is required at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if takeaway!=only)", - "value": "required" + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=recommended with a fixed text, namely 'A reservation is not required, but still recommended to make sure you get a table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if takeaway!=only)", - "value": "recommended" + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=yes with a fixed text, namely 'Reservation is possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if takeaway!=only)", - "value": "yes" + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=no with a fixed text, namely 'Reservation is not possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if takeaway!=only)", - "value": "no" + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "only" + "value": "only", + "description": "takeaway=only is displayed as \"This is a take-away only business\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "takeaway=yes is displayed as \"Take-away is possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "takeaway=no is displayed as \"Take-away is not possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (possibly via a third party)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "delivery=yes is displayed as \"This business does home delivery (possibly via a third party)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "delivery=no is displayed as \"This business does not deliver at home\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=yes with a fixed text, namely 'This fast-food restaurant has a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if amenity=fast_food)", - "value": "yes" + "value": "yes", + "description": "drive_through=yes is displayed as \"This fast-food restaurant has a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=no with a fixed text, namely 'This fast-food restaurant does not have a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if amenity=fast_food)", - "value": "no" + "value": "no", + "description": "drive_through=no is displayed as \"This fast-food restaurant does not have a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours:drive_through' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if drive_through=yes)" + "description": "Values of `opening_hours:drive_through` are shown with \"

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}\" and can be updated. The question is \"What are the opening hours of the drive-through?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows opening_hours:drive_through= with a fixed text, namely 'The opening hours of the drive-through are the same as the restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') Picking this answer will delete the key opening_hours:drive_through. (This is only shown if drive_through=yes)", - "value": "" + "description": "opening_hours:drive_through= is displayed as \"The opening hours of the drive-through are the same as the restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg;cross_bottom_right:red" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Some vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"All dishes are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegetarian version, but this should be demanded' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegetarian=on_demand is displayed as \"Some dishes might be adapted to a vegetarian version, but this should be demanded\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"Some vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"All dishes are vegan\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegan version if asked for' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegan=on_demand is displayed as \"Some dishes might be adapted to a vegan version if asked for\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:halal=no is displayed as \"There are no halal options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:halal=limited is displayed as \"There is a small halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:halal=yes is displayed as \"There is a halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:halal=only is displayed as \"Only halal options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'There are no organic options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"There are no organic options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'There is an organic menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"There is an organic menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'Serves only vegetarian snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"Serves only vegetarian snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Only a small selection of snacks are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'Serves only vegan snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"Serves only vegan snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"A small selection of vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'Organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"Organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'No organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"No organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "vegetable" + "value": "vegetable", + "description": "friture:oil=vegetable is displayed as \"The frying is done with vegetable oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "animal" + "value": "animal", + "description": "friture:oil=animal is displayed as \"The frying is done with animal oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "reusable_packaging:accept=yes is displayed as \"You can bring your own containers to get your order, saving on single-use packaging material and thus waste\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "reusable_packaging:accept=no is displayed as \"Bringing your own container is not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "reusable_packaging:accept=only is displayed as \"You must bring your own container to order here.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "yes" + "value": "yes", + "description": "smoking=yes is displayed as \"Smoking is allowed\" by layers Restaurants and fast food, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#smoking", + "icon_url": "./assets/layers/questions/smoking.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "no" + "value": "no", + "description": "smoking=no is displayed as \"Smoking is not allowed\" by layers Restaurants and fast food, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#smoking", + "icon_url": "./assets/layers/questions/no_smoking.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "outside", + "description": "smoking=outside is displayed as \"Smoking is allowed outside.\" by layers Restaurants and fast food, Outdoor Seating, Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#smoking", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" + "value": "limited", + "description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "ask" + "value": "ask", + "description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "outdoor_seating", - "description": "Layer 'Restaurants and fast food' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#seating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "indoor_seating", - "description": "Layer 'Restaurants and fast food' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#seating", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layers Restaurants and fast food, Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Restaurants and fast food has a layer Ice cream parlors showing features with this tag", - "value": "ice_cream" - }, - { - "key": "id", - "description": "Layer 'Ice cream parlors' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "ice_cream", + "description": "Features with this tag are displayed by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "name", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "contact:phone", - "description": "Layer 'Ice cream parlors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "email", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "contact:email", - "description": "Layer 'Ice cream parlors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "operator:email", - "description": "Layer 'Ice cream parlors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "website", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "contact:website", - "description": "Layer 'Ice cream parlors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "description": "Values of `name` are shown with \"This ice cream parlor is named {name}\" and can be updated. The question is \"What is the name of this ice cream parlor?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#1", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=only with a fixed text, namely 'This place only sells vegan products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"This place only sells vegan products\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=yes with a fixed text, namely 'This shop has a big vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"This shop has a big vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=limited with a fixed text, namely 'This shop has a limited vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"This shop has a limited vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=no with a fixed text, namely 'This shop has no vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" - }, - { - "key": "payment:cash", - "description": "Layer 'Ice cream parlors' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Ice cream parlors' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Ice cream parlors' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"This shop has no vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "leisure", - "description": "The MapComplete theme Restaurants and fast food has a layer Outdoor Seating showing features with this tag", - "value": "outdoor_seating" - }, - { - "key": "id", - "description": "Layer 'Outdoor Seating' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "outdoor_seating", + "description": "Features with this tag are displayed by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "access", - "description": "Layer 'Outdoor Seating' shows access=yes with a fixed text, namely 'Anyone can use this outdoor seating area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Anyone can use this outdoor seating area.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "access", - "description": "Layer 'Outdoor Seating' shows access=customers with a fixed text, namely 'Only customers can use this outdoor seating area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only customers can use this outdoor seating area.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "access", - "description": "Layer 'Outdoor Seating' shows access=private with a fixed text, namely 'This outdoor seating area is private.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"This outdoor seating area is private.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=no with a fixed text, namely 'This outdoor seating area is available all year round.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "seasonal=no is displayed as \"This outdoor seating area is available all year round.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=spring with a fixed text, namely 'This outdoor seating area is available in spring.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "spring" + "value": "spring", + "description": "seasonal=spring is displayed as \"This outdoor seating area is available in spring.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=summer with a fixed text, namely 'This outdoor seating area is available in summer.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "summer" + "value": "summer", + "description": "seasonal=summer is displayed as \"This outdoor seating area is available in summer.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=autumn with a fixed text, namely 'This outdoor seating area is available in autumn.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "autumn" + "value": "autumn", + "description": "seasonal=autumn is displayed as \"This outdoor seating area is available in autumn.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=winter with a fixed text, namely 'This outdoor seating area is available in winter.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "winter" + "value": "winter", + "description": "seasonal=winter is displayed as \"This outdoor seating area is available in winter.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "seasonal", - "description": "Layer 'Outdoor Seating' shows seasonal=dry_season with a fixed text, namely 'This outdoor seating area is available in the dry season.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "dry_season" + "value": "dry_season", + "description": "seasonal=dry_season is displayed as \"This outdoor seating area is available in the dry season.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "opening_hours", - "description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "opening_hours", - "description": "Layer 'Outdoor Seating' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Outdoor Seating' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "contact:website", - "description": "Layer 'Outdoor Seating' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Outdoor Seating' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Outdoor Seating' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Outdoor Seating' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Outdoor Seating' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Outdoor Seating' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" - }, - { - "key": "wheelchair", - "description": "Layer 'Outdoor Seating' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Outdoor Seating' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Outdoor Seating' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Outdoor Seating' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "heating", - "description": "Layer 'Outdoor Seating' shows heating=yes with a fixed text, namely 'This outdoor seating area is heated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "heating=yes is displayed as \"This outdoor seating area is heated.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#heating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "heating", - "description": "Layer 'Outdoor Seating' shows heating=no with a fixed text, namely 'This outdoor seating area is not heated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" + "value": "no", + "description": "heating=no is displayed as \"This outdoor seating area is not heated.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#heating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "covered", - "description": "Layer 'Outdoor Seating' shows covered=yes with a fixed text, namely 'This outdoor seating area is covered.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" + "value": "yes", + "description": "covered=yes is displayed as \"This outdoor seating area is covered.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#covered", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "covered", - "description": "Layer 'Outdoor Seating' shows covered=no with a fixed text, namely 'This outdoor seating area is not covered.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Outdoor Seating' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "yes" - }, - { - "key": "smoking", - "description": "Layer 'Outdoor Seating' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Outdoor Seating' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "no", + "description": "covered=no is displayed as \"This outdoor seating area is not covered.\" by layer Outdoor Seating", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#covered", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "amenity", - "description": "The MapComplete theme Restaurants and fast food has a layer Food Courts showing features with this tag", - "value": "food_court" - }, - { - "key": "id", - "description": "Layer 'Food Courts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "food_court", + "description": "Features with this tag are displayed by layer Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_courts.md", + "icon_url": "./assets/layers/food_courts/food_court.svg" }, { "key": "name", - "description": "Layer 'Food Courts' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "image", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "opening_hours", - "description": "Layer 'Food Courts' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "opening_hours", - "description": "Layer 'Food Courts' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "closed" - }, - { - "key": "wheelchair", - "description": "Layer 'Food Courts' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Food Courts' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Food Courts' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Food Courts' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food')", - "value": "no" - }, - { - "key": "website", - "description": "Layer 'Food Courts' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "contact:website", - "description": "Layer 'Food Courts' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "phone", - "description": "Layer 'Food Courts' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "contact:phone", - "description": "Layer 'Food Courts' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Restaurants and fast food')" - }, - { - "key": "smoking", - "description": "Layer 'Food Courts' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "yes" - }, - { - "key": "smoking", - "description": "Layer 'Food Courts' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Food Courts' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Restaurants and fast food') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "description": "Values of `name` are shown with \"This food court is called {name}.\" and can be updated. The question is \"What is the name of this food court?\" by layer Food Courts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_courts.md#name", + "icon_url": "./assets/layers/food_courts/food_court.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_fritures.json b/Docs/TagInfo/mapcomplete_fritures.json index 1b00a4633d..8c6d7d20ed 100644 --- a/Docs/TagInfo/mapcomplete_fritures.json +++ b/Docs/TagInfo/mapcomplete_fritures.json @@ -7,717 +7,981 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/fritures/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "cuisine", - "description": "The MapComplete theme Fries shops has a layer Fries shop showing features with this tag" + "description": "Features with this tag are displayed by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Fries shops has a layer Fries shop showing features with this tag", - "value": "fast_food" + "value": "fast_food", + "description": "Features with this tag are displayed by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Fries shops has a layer Fries shop showing features with this tag", - "value": "restaurant" + "value": "restaurant", + "description": "Features with this tag are displayed by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "id", - "description": "Layer 'Fries shop' 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 'Fries shops') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Fries shop, Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Fries shop, Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Fries shop, Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Fries shop, Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Fries shop, Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "name", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Fries shops')" + "description": "Values of `name` are shown with \"The name of this business is {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Name", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Fries shop' shows amenity=fast_food with a fixed text, namely 'This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "fast_food" + "value": "fast_food", + "description": "amenity=fast_food is displayed as \"This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Fries shop' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "restaurant" + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant, focused on creating a nice experience where one is served at the table\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Fries shops')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours", - "description": "Layer 'Fries shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Fries shops')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Fries shops')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Fries shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Fries shops')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Fries shops')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Fries shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Fries shops')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Fries shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Fries shops')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Fries shops')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Fries shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Fries shops')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "payment:cash", - "description": "Layer 'Fries shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Fries shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Fries shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "level", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Fries shops') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "location", - "description": "Layer 'Fries shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Fries shops') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Fries shop' 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 'Fries shops') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Fries shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Fries shops') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Fries shop' 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 'Fries shops') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Fries shop' 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 'Fries shops') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Fries shop' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Fries shop' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Fries shop' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Fries shop' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'cuisine' (in the mapcomplete.org theme 'Fries shops')" + "description": "Values of `cuisine` are shown with \"This place mostly serves {cuisine}\" and can be updated. The question is \"What kind of food is served here?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=pizza with a fixed text, namely 'Pizzeria' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "pizza" + "value": "pizza", + "description": "cuisine=pizza is displayed as \"Pizzeria\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=friture with a fixed text, namely 'Friture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "friture" + "value": "friture", + "description": "cuisine=friture is displayed as \"Friture\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=pasta with a fixed text, namely 'Serves mainly pasta' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "pasta" + "value": "pasta", + "description": "cuisine=pasta is displayed as \"Serves mainly pasta\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=kebab with a fixed text, namely 'Kebab shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "kebab" + "value": "kebab", + "description": "cuisine=kebab is displayed as \"Kebab shop\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=sandwich with a fixed text, namely 'Sandwich shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "sandwich" + "value": "sandwich", + "description": "cuisine=sandwich is displayed as \"Sandwich shop\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=burger with a fixed text, namely 'Burgersrestaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "burger" + "value": "burger", + "description": "cuisine=burger is displayed as \"Burgersrestaurant\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=sushi with a fixed text, namely 'Sushi restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "sushi" + "value": "sushi", + "description": "cuisine=sushi is displayed as \"Sushi restaurant\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=coffee with a fixed text, namely 'Coffeebar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "coffee" + "value": "coffee", + "description": "cuisine=coffee is displayed as \"Coffeebar\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=italian with a fixed text, namely 'Italian restaurant (which serves more than pasta and pizza)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "italian" + "value": "italian", + "description": "cuisine=italian is displayed as \"Italian restaurant (which serves more than pasta and pizza)\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=french with a fixed text, namely 'French restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "french" + "value": "french", + "description": "cuisine=french is displayed as \"French restaurant\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=chinese with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "chinese" + "value": "chinese", + "description": "cuisine=chinese is displayed as \"Chinese\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=greek with a fixed text, namely 'Greek' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "greek" + "value": "greek", + "description": "cuisine=greek is displayed as \"Greek\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=indian with a fixed text, namely 'Indian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "indian" + "value": "indian", + "description": "cuisine=indian is displayed as \"Indian\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=turkish with a fixed text, namely 'Turkish restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "turkish" + "value": "turkish", + "description": "cuisine=turkish is displayed as \"Turkish restaurant\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=thai with a fixed text, namely 'Thai restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "thai" + "value": "thai", + "description": "cuisine=thai is displayed as \"Thai restaurant\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=mexican with a fixed text, namely 'Mexican dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "mexican " + "value": "mexican ", + "description": "cuisine=mexican is displayed as \"Mexican dishes are served here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=japanese with a fixed text, namely 'Japanese dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "japanese " + "value": "japanese ", + "description": "cuisine=japanese is displayed as \"Japanese dishes are served here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=chicken with a fixed text, namely 'Chicken based dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "chicken " + "value": "chicken ", + "description": "cuisine=chicken is displayed as \"Chicken based dishes are served here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Fries shop' shows cuisine=seafood with a fixed text, namely 'Seafood dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "seafood " + "value": "seafood ", + "description": "cuisine=seafood is displayed as \"Seafood dishes are served here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "image", - "description": "The layer 'Fries shop shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Fries shop shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Fries shop shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Fries shop shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Fries shop shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "image", - "description": "The layer 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Fries shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website:menu", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'website:menu' (in the mapcomplete.org theme 'Fries shops')" + "description": "Values of `website:menu` are shown with \"{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage is the menu published?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#menu_website", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Fries shop' shows reservation=required with a fixed text, namely 'A reservation is required at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if takeaway!=only)", - "value": "required" + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Fries shop' shows reservation=recommended with a fixed text, namely 'A reservation is not required, but still recommended to make sure you get a table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if takeaway!=only)", - "value": "recommended" + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Fries shop' shows reservation=yes with a fixed text, namely 'Reservation is possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if takeaway!=only)", - "value": "yes" + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Fries shop' shows reservation=no with a fixed text, namely 'Reservation is not possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if takeaway!=only)", - "value": "no" + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Fries shop' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "only" + "value": "only", + "description": "takeaway=only is displayed as \"This is a take-away only business\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Fries shop' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "takeaway=yes is displayed as \"Take-away is possible here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Fries shop' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "takeaway=no is displayed as \"Take-away is not possible here\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Fries shop' shows delivery=yes with a fixed text, namely 'This business does home delivery (possibly via a third party)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "delivery=yes is displayed as \"This business does home delivery (possibly via a third party)\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Fries shop' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "delivery=no is displayed as \"This business does not deliver at home\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Fries shop' shows drive_through=yes with a fixed text, namely 'This fast-food restaurant has a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if amenity=fast_food)", - "value": "yes" + "value": "yes", + "description": "drive_through=yes is displayed as \"This fast-food restaurant has a drive-through\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Fries shop' shows drive_through=no with a fixed text, namely 'This fast-food restaurant does not have a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if amenity=fast_food)", - "value": "no" + "value": "no", + "description": "drive_through=no is displayed as \"This fast-food restaurant does not have a drive-through\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'opening_hours:drive_through' (in the mapcomplete.org theme 'Fries shops') (This is only shown if drive_through=yes)" + "description": "Values of `opening_hours:drive_through` are shown with \"

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}\" and can be updated. The question is \"What are the opening hours of the drive-through?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Fries shop' shows opening_hours:drive_through= with a fixed text, namely 'The opening hours of the drive-through are the same as the restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') Picking this answer will delete the key opening_hours:drive_through. (This is only shown if drive_through=yes)", - "value": "" + "description": "opening_hours:drive_through= is displayed as \"The opening hours of the drive-through are the same as the restaurant\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian options are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg;cross_bottom_right:red" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Some vegetarian options are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian options are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"All dishes are vegetarian\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegetarian version, but this should be demanded' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegetarian=on_demand is displayed as \"Some dishes might be adapted to a vegetarian version, but this should be demanded\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan options available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"Some vegan options are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan options are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"All dishes are vegan\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegan version if asked for' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegan=on_demand is displayed as \"Some dishes might be adapted to a vegan version if asked for\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Fries shop' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:halal=no is displayed as \"There are no halal options available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Fries shop' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:halal=limited is displayed as \"There is a small halal menu\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Fries shop' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:halal=yes is displayed as \"There is a halal menu\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Fries shop' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:halal=only is displayed as \"Only halal options are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Fries shop' shows organic=no with a fixed text, namely 'There are no organic options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"There are no organic options available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Fries shop' shows organic=yes with a fixed text, namely 'There is an organic menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"There is an organic menu\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Fries shop' shows organic=only with a fixed text, namely 'Only organic options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic options are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=only with a fixed text, namely 'Serves only vegetarian snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"Serves only vegetarian snacks and burgers\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian snacks are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Only a small selection of snacks are vegetarian\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Fries shop' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian snacks are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=only with a fixed text, namely 'Serves only vegan snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"Serves only vegan snacks and burgers\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan snacks are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"A small selection of vegan snacks are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Fries shop' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan snacks are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Fries shop' shows organic=yes with a fixed text, namely 'Organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"Organic snacks are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Fries shop' shows organic=no with a fixed text, namely 'No organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"No organic snacks are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Fries shop' shows organic=only with a fixed text, namely 'Only organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic snacks are available\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Fries shop' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "vegetable" + "value": "vegetable", + "description": "friture:oil=vegetable is displayed as \"The frying is done with vegetable oil\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Fries shop' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "animal" + "value": "animal", + "description": "friture:oil=animal is displayed as \"The frying is done with animal oil\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Fries shop' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "reusable_packaging:accept=yes is displayed as \"You can bring your own containers to get your order, saving on single-use packaging material and thus waste\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Fries shop' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "reusable_packaging:accept=no is displayed as \"Bringing your own container is not allowed\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Fries shop' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "reusable_packaging:accept=only is displayed as \"You must bring your own container to order here.\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Fries shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Fries shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Fries shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Fries shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Fries shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Fries shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Fries shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Fries shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Fries shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Fries shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Fries shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Fries shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "smoking", - "description": "Layer 'Fries shop' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if _country!~^(al|be)$)", - "value": "yes" + "value": "yes", + "description": "smoking=yes is displayed as \"Smoking is allowed\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#smoking", + "icon_url": "./assets/layers/questions/smoking.svg" }, { "key": "smoking", - "description": "Layer 'Fries shop' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if _country!~^(al|be)$)", - "value": "no" + "value": "no", + "description": "smoking=no is displayed as \"Smoking is not allowed\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#smoking", + "icon_url": "./assets/layers/questions/no_smoking.svg" }, { "key": "smoking", - "description": "Layer 'Fries shop' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "outside", + "description": "smoking=outside is displayed as \"Smoking is allowed outside.\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#smoking", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Fries shop' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Fries shop' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "limited" + "value": "limited", + "description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Fries shop' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "ask" + "value": "ask", + "description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Fries shop' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "outdoor_seating", - "description": "Layer 'Fries shop' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#seating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "indoor_seating", - "description": "Layer 'Fries shop' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#seating", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "dog", - "description": "Layer 'Fries shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Fries shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Fries shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Fries shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Fries shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "internet_access", - "description": "Layer 'Fries shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Fries shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Fries shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Fries shops')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Fries shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Fries shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Fries shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Fries shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Fries shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Fries shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Fries shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Fries shops') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Fries shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fries shops') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Fries shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_ghostbikes.json b/Docs/TagInfo/mapcomplete_ghostbikes.json index c485a1fc9c..0fbd8aef8d 100644 --- a/Docs/TagInfo/mapcomplete_ghostbikes.json +++ b/Docs/TagInfo/mapcomplete_ghostbikes.json @@ -7,62 +7,88 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/ghostbikes/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "memorial", - "description": "The MapComplete theme Ghost bikes has a layer Ghost bikes showing features with this tag", - "value": "ghost_bike" + "value": "ghost_bike", + "description": "Features with this tag are displayed by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "id", - "description": "Layer 'Ghost bikes' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ghost bikes') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "panoramax", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "mapillary", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "wikidata", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "wikipedia", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "subject", - "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'subject' (in the mapcomplete.org theme 'Ghost bikes')" + "description": "Values of `subject` are shown with \"In remembrance of {subject}\" and can be updated. The question is \"Whom is remembered by this ghost bike?\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "name", - "description": "Layer 'Ghost bikes' shows name~.+ with a fixed text, namely 'In remembrance of {name}' (in the mapcomplete.org theme 'Ghost bikes')" + "description": "name~.+ is displayed as \"In remembrance of {name}\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "noname", - "description": "Layer 'Ghost bikes' shows noname=yes with a fixed text, namely 'No name is marked on the bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost bikes')", - "value": "yes" + "value": "yes", + "description": "noname=yes is displayed as \"No name is marked on the bike\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "source", - "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'source' (in the mapcomplete.org theme 'Ghost bikes')" + "description": "Values of `source` are shown with \"{link(More info available,&LBRACEsource&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage can one find more info about the ghost bike or the accident?\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_source", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "inscription", - "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Ghost bikes')" + "description": "Values of `inscription` are shown with \"{inscription}\" and can be updated. The question is \"What is the inscription on this Ghost bike?\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_inscription", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "start_date", - "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Ghost bikes')" + "description": "Values of `start_date` are shown with \"Placed on {start_date}\" and can be updated. The question is \"When was this Ghost bike installed?\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_start_date", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_ghostsigns.json b/Docs/TagInfo/mapcomplete_ghostsigns.json index 48a776f290..6c5235b6eb 100644 --- a/Docs/TagInfo/mapcomplete_ghostsigns.json +++ b/Docs/TagInfo/mapcomplete_ghostsigns.json @@ -7,796 +7,1176 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/advertising/wall_painting.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "historic", - "description": "The MapComplete theme Ghost Signs has a layer Ghost Signs showing features with this tag" + "description": "Features with this tag are displayed by layer Ghost Signs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "advertising", - "description": "The MapComplete theme Ghost Signs has a layer Ghost Signs showing features with this tag" + "description": "Features with this tag are displayed by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "id", - "description": "Layer 'Ghost Signs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Ghost Signs, Advertisement, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Ghost Signs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost Signs, Advertisement, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#images", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "panoramax", - "description": "The layer 'Ghost Signs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost Signs, Advertisement, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#images", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "mapillary", - "description": "The layer 'Ghost Signs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost Signs, Advertisement, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#images", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "wikidata", - "description": "The layer 'Ghost Signs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost Signs, Advertisement, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#images", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "wikipedia", - "description": "The layer 'Ghost Signs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost Signs, Advertisement, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#images", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "historic", - "description": "Layer 'Ghost Signs' shows historic=advertising with a fixed text, namely 'This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "advertising" + "value": "advertising", + "description": "historic=advertising is displayed as \"This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#historic", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "historic", - "description": "Layer 'Ghost Signs' shows historic= with a fixed text, namely 'This advertisement sign has no historic value (the business still exists and has no heritage value)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') Picking this answer will delete the key historic.", - "value": "" + "description": "historic= is displayed as \"This advertisement sign has no historic value (the business still exists and has no heritage value)\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#historic", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows and asks freeform values for key 'advertising' (in the mapcomplete.org theme 'Ghost Signs')" + "description": "Values of `advertising` are shown with \"This is a {advertising}\" and can be updated. The question is \"Which type of advertising feature is this?\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=billboard with a fixed text, namely 'This is a billboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "billboard" + "value": "billboard", + "description": "advertising=billboard is displayed as \"This is a billboard\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/billboard.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=board with a fixed text, namely 'This is a board' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "board" + "value": "board", + "description": "advertising=board is displayed as \"This is a board\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/board.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=column with a fixed text, namely 'This is a column' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "column" + "value": "column", + "description": "advertising=column is displayed as \"This is a column\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/column.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=flag with a fixed text, namely 'This is a flag' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "flag" + "value": "flag", + "description": "advertising=flag is displayed as \"This is a flag\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/flag.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=poster_box with a fixed text, namely 'This is a poster Box' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "poster_box" + "value": "poster_box", + "description": "advertising=poster_box is displayed as \"This is a poster Box\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/poster_box.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=screen with a fixed text, namely 'This is a screen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "screen" + "value": "screen", + "description": "advertising=screen is displayed as \"This is a screen\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/screen.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=sculpture with a fixed text, namely 'This is a sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "sculpture" + "value": "sculpture", + "description": "advertising=sculpture is displayed as \"This is a sculpture\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/sculpture.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=sign with a fixed text, namely 'This is a sign' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "sign" + "value": "sign", + "description": "advertising=sign is displayed as \"This is a sign\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=tarp with a fixed text, namely 'This is a tarp (a weatherproof piece of textile with an advertising message)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "tarp" + "value": "tarp", + "description": "advertising=tarp is displayed as \"This is a tarp (a weatherproof piece of textile with an advertising message)\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/tarp.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=totem with a fixed text, namely 'This is a totem' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "totem" + "value": "totem", + "description": "advertising=totem is displayed as \"This is a totem\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/totem.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=wall_painting with a fixed text, namely 'This is a wall painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "wall_painting" + "value": "wall_painting", + "description": "advertising=wall_painting is displayed as \"This is a wall painting\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=tilework with a fixed text, namely 'This is tilework - the advertisement is painted on tiles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "tilework" + "value": "tilework", + "description": "advertising=tilework is displayed as \"This is tilework - the advertisement is painted on tiles\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "advertising", - "description": "Layer 'Ghost Signs' shows advertising=relief with a fixed text, namely 'This is a relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "relief" + "value": "relief", + "description": "advertising=relief is displayed as \"This is a relief\" by layers Ghost Signs, Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#type", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "inscription", - "description": "Layer 'Ghost Signs' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Ghost Signs')" + "description": "Values of `inscription` are shown with \"The text on the sign is: {inscription}\" and can be updated. The question is \"What is the text on the sign?\" by layer Ghost Signs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#inscription", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "brand", - "description": "Layer 'Ghost Signs' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Ghost Signs')" - }, - { - "key": "advertising", - "description": "The MapComplete theme Ghost Signs has a layer Advertisement showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Advertisement' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows and asks freeform values for key 'advertising' (in the mapcomplete.org theme 'Ghost Signs')" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=billboard with a fixed text, namely 'This is a billboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "billboard" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=board with a fixed text, namely 'This is a board' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "board" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=column with a fixed text, namely 'This is a column' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "column" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=flag with a fixed text, namely 'This is a flag' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "flag" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=poster_box with a fixed text, namely 'This is a poster Box' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "poster_box" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=screen with a fixed text, namely 'This is a screen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "screen" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=sculpture with a fixed text, namely 'This is a sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "sculpture" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=sign with a fixed text, namely 'This is a sign' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "sign" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=tarp with a fixed text, namely 'This is a tarp (a weatherproof piece of textile with an advertising message)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "tarp" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=totem with a fixed text, namely 'This is a totem' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "totem" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=wall_painting with a fixed text, namely 'This is a wall painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "wall_painting" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=tilework with a fixed text, namely 'This is tilework - the advertisement is painted on tiles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "tilework" - }, - { - "key": "advertising", - "description": "Layer 'Advertisement' shows advertising=relief with a fixed text, namely 'This is a relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "relief" + "description": "Values of `brand` are shown with \"This sign was made for: {brand}\" and can be updated. The question is \"For what business was this sign made?\" by layer Ghost Signs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghostsign.md#brand", + "icon_url": "./assets/themes/advertising/wall_painting.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=no with a fixed text, namely 'Static, always shows the same message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "no" + "value": "no", + "description": "animated=no is displayed as \"Static, always shows the same message\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#animated", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=digital_display with a fixed text, namely 'This object has a built-in digital display to show prices or some other message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "digital_display" + "value": "digital_display", + "description": "animated=digital_display is displayed as \"This object has a built-in digital display to show prices or some other message\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#animated", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=trivision_blades with a fixed text, namely 'Trivision - the billboard consists of many triangular prisms which regularly rotate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "trivision_blades" + "value": "trivision_blades", + "description": "animated=trivision_blades is displayed as \"Trivision - the billboard consists of many triangular prisms which regularly rotate\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#animated", + "icon_url": "./assets/themes/advertising/trivision.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=winding_posters with a fixed text, namely 'Scrolling posters' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "winding_posters" + "value": "winding_posters", + "description": "animated=winding_posters is displayed as \"Scrolling posters\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#animated", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "animated", - "description": "Layer 'Advertisement' shows animated=revolving with a fixed text, namely 'Rotates on itself' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)", - "value": "revolving" + "value": "revolving", + "description": "animated=revolving is displayed as \"Rotates on itself\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#animated", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "luminous", - "description": "Layer 'Advertisement' shows luminous=neon with a fixed text, namely 'This is a neon-tube light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen)", - "value": "neon" + "value": "neon", + "description": "luminous=neon is displayed as \"This is a neon-tube light\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "lit", - "description": "Layer 'Advertisement' shows lit=yes & luminous=yes with a fixed text, namely 'This object both emits light and is lighted by an external light source' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen)", - "value": "yes" + "value": "yes", + "description": "lit=yes & luminous=yes is displayed as \"This object both emits light and is lighted by an external light source\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "luminous", - "description": "Layer 'Advertisement' shows lit=yes & luminous=yes with a fixed text, namely 'This object both emits light and is lighted by an external light source' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen)", - "value": "yes" + "value": "yes", + "description": "lit=yes & luminous=yes is displayed as \"This object both emits light and is lighted by an external light source\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "luminous", - "description": "Layer 'Advertisement' shows luminous=yes with a fixed text, namely 'This object emits light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen)", - "value": "yes" + "value": "yes", + "description": "luminous=yes is displayed as \"This object emits light\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "lit", - "description": "Layer 'Advertisement' shows lit=yes with a fixed text, namely 'This object is lit externally, e.g. by a spotlight or other lights' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen)", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This object is lit externally, e.g. by a spotlight or other lights\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "lit", - "description": "Layer 'Advertisement' shows lit=no & luminous=no with a fixed text, namely 'This object does not emit light and is not lighted by externally' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen)", - "value": "no" + "value": "no", + "description": "lit=no & luminous=no is displayed as \"This object does not emit light and is not lighted by externally\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "luminous", - "description": "Layer 'Advertisement' shows lit=no & luminous=no with a fixed text, namely 'This object does not emit light and is not lighted by externally' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=screen)", - "value": "no" + "value": "no", + "description": "lit=no & luminous=no is displayed as \"This object does not emit light and is not lighted by externally\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#luminous_or_lit_advertising", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "operator", - "description": "Layer 'Advertisement' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Ghost Signs')" + "description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who operates this feature?\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#operator", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=commercial with a fixed text, namely 'Commercial message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "commercial" + "value": "commercial", + "description": "message=commercial is displayed as \"Commercial message\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=local with a fixed text, namely 'Local information' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "local" + "value": "local", + "description": "message=local is displayed as \"Local information\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=safety with a fixed text, namely 'Security information' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "safety" + "value": "safety", + "description": "message=safety is displayed as \"Security information\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=political with a fixed text, namely 'Electoral advertising' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "political" + "value": "political", + "description": "message=political is displayed as \"Electoral advertising\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=showbiz with a fixed text, namely 'Information related to theatre, concerts, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "showbiz" + "value": "showbiz", + "description": "message=showbiz is displayed as \"Information related to theatre, concerts, …\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=non_profit with a fixed text, namely 'Message from non-profit organizations' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "non_profit" + "value": "non_profit", + "description": "message=non_profit is displayed as \"Message from non-profit organizations\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=opinion with a fixed text, namely 'To express your opinion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "opinion" + "value": "opinion", + "description": "message=opinion is displayed as \"To express your opinion\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=religion with a fixed text, namely 'Religious message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "religion" + "value": "religion", + "description": "message=religion is displayed as \"Religious message\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "message", - "description": "Layer 'Advertisement' shows message=funding with a fixed text, namely 'Funding sign' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "funding" + "value": "funding", + "description": "message=funding is displayed as \"Funding sign\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "information", - "description": "Layer 'Advertisement' shows information=map with a fixed text, namely 'A map' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "map" + "value": "map", + "description": "information=map is displayed as \"A map\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#message_type", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "sides", - "description": "Layer 'Advertisement' shows sides=1 with a fixed text, namely 'This object has advertisements on a single side' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if _referencing_ways= & (advertising=poster_box | advertising=screen | advertising=billboard))", - "value": "1" + "value": "1", + "description": "sides=1 is displayed as \"This object has advertisements on a single side\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#Sides", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "sides", - "description": "Layer 'Advertisement' shows sides=2 with a fixed text, namely 'This object has advertisements on both sides' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if _referencing_ways= & (advertising=poster_box | advertising=screen | advertising=billboard))", - "value": "2" + "value": "2", + "description": "sides=2 is displayed as \"This object has advertisements on both sides\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#Sides", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "ref", - "description": "Layer 'Advertisement' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if advertising!=sign)" - }, - { - "key": "historic", - "description": "Layer 'Advertisement' shows historic=advertising with a fixed text, namely 'This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "advertising" - }, - { - "key": "historic", - "description": "Layer 'Advertisement' shows historic= with a fixed text, namely 'This advertisement sign has no historic value (the business still exists and has no heritage value)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') Picking this answer will delete the key historic.", - "value": "" + "description": "Values of `ref` are shown with \"Reference number is {ref}\" and can be updated. The question is \"Wich is the reference number?\" by layer Advertisement", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising_wall_paintings.md#ref", + "icon_url": "./assets/themes/advertising/sign.svg" }, { "key": "tourism", - "description": "The MapComplete theme Ghost Signs has a layer Artworks showing features with this tag", - "value": "artwork" + "value": "artwork", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "description": "The MapComplete theme Ghost Signs has a layer Artworks showing features with this tag", - "value": "mural" + "value": "mural", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "description": "The MapComplete theme Ghost Signs has a layer Artworks showing features with this tag", - "value": "graffiti" + "value": "graffiti", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "description": "The MapComplete theme Ghost Signs has a layer Artworks showing features with this tag", - "value": "mosaic" + "value": "mosaic", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "description": "The MapComplete theme Ghost Signs has a layer Artworks showing features with this tag", - "value": "relief" + "value": "relief", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "description": "The MapComplete theme Ghost Signs has a layer Artworks showing features with this tag", - "value": "painting" + "value": "painting", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "description": "The MapComplete theme Ghost Signs has a layer Artworks showing features with this tag", - "value": "mural_painting" + "value": "mural_painting", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "historic", - "description": "Layer 'Artworks' shows historic=advertising with a fixed text, namely 'This artwork is a historic advertisement' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')", - "value": "advertising" + "value": "advertising", + "description": "historic=advertising is displayed as \"This artwork is a historic advertisement\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#historic_or_not", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "historic", - "description": "Layer 'Artworks' shows historic= with a fixed text, namely 'This artwork is not a historic advertisement' 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": "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 'Ghost Signs') (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" + "description": "historic= is displayed as \"This artwork is not a historic advertisement\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#historic_or_not", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artwork_type", - "description": "Layer 'Artworks' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Ghost Signs')" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Artworks' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Ghost Signs')" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artist_wikidata", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "artist_name", - "description": "Layer 'Artworks' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if artist:wikidata=)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_artist_name", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "website", - "description": "Layer 'Artworks' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Ghost Signs')" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_website", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "wikidata", - "description": "Layer 'Artworks' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Ghost Signs')" + "description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "wikipedia", - "description": "Layer 'Artworks' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Ghost Signs')" + "description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "wikidata", - "description": "Layer 'Artworks' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Ghost Signs') Picking this answer will delete the key wikidata.", - "value": "" + "description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Artworks' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if subject:wikidata~.+)" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#artwork_subject", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This artwork also serves as a memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#doubles_as_memorial", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "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 'Ghost Signs') Picking this answer will delete the key historic.", - "value": "" + "description": "historic= is displayed as \"This artwork does not serve as a memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#doubles_as_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "memorial", - "description": "Layer 'Artworks' shows and asks freeform values for key 'memorial' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=memorial)" + "description": "Values of `memorial` are shown with \"This is a {memorial}\" and can be updated. The question is \"What type of memorial is this?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "statue" + "value": "statue", + "description": "memorial=statue is displayed as \"This is a statue\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "plaque" + "value": "plaque", + "description": "memorial=plaque is displayed as \"This is a plaque\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "bench" + "value": "bench", + "description": "memorial=bench is displayed as \"This is a commemorative bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "ghost_bike" + "value": "ghost_bike", + "description": "memorial=ghost_bike is displayed as \"This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "stolperstein" + "value": "stolperstein", + "description": "memorial=stolperstein is displayed as \"This is a stolperstein (stumbing stone)\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "stele" + "value": "stele", + "description": "memorial=stele is displayed as \"This is a stele\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "stone" + "value": "stone", + "description": "memorial=stone is displayed as \"This is a memorial stone\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "bust" + "value": "bust", + "description": "memorial=bust is displayed as \"This is a bust\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "sculpture" + "value": "sculpture", + "description": "memorial=sculpture is displayed as \"This is a sculpture\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "obelisk" + "value": "obelisk", + "description": "memorial=obelisk is displayed as \"This is an obelisk\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "cross" + "value": "cross", + "description": "memorial=cross is displayed as \"This is a cross\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "blue_plaque" + "value": "blue_plaque", + "description": "memorial=blue_plaque is displayed as \"This is a blue plaque\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "tank" + "value": "tank", + "description": "memorial=tank is displayed as \"This is a historic tank, permanently placed in public space as memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "tree" + "value": "tree", + "description": "memorial=tree is displayed as \"This is a memorial tree\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if historic=memorial)", - "value": "tomb" + "value": "tomb", + "description": "historic=tomb is displayed as \"This is a gravestone; the person is buried here\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "inscription", - "description": "Layer 'Artworks' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if memorial!=bench & historic=memorial)" + "description": "Values of `inscription` are shown with \"The inscription on this memorial reads:

{inscription}

\" and can be updated. The question is \"What is the inscription on this memorial?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if memorial!=bench & historic=memorial)", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This memorial does not have an inscription\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs')", - "value": "bench" + "value": "bench", + "description": "amenity=bench is displayed as \"This artwork also serves as a bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#doubles_as_bench", + "icon_url": "./assets/layers/bench/bench.svg" }, { "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 'Ghost Signs') Picking this answer will delete the key amenity.", - "value": "" + "description": "amenity= is displayed as \"This artwork does not serve as a bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#doubles_as_bench", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes is displayed as \"This bench does have a backrest\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_backrest", + "icon_url": "./assets/layers/bench/one_sided.svg" }, { "key": "backrest", - "description": "Layer 'Artworks' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "backrest=no is displayed as \"This bench does not have a backrest\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_backrest", + "icon_url": "./assets/layers/bench/no_backrest.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_armrest", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "armrest", - "description": "Layer 'Artworks' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "armrest=no is displayed as \"This bench does not have any armrests\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_armrest", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "seats", - "description": "Layer 'Artworks' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if amenity=bench)" + "description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_seats", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_seats", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "material", - "description": "Layer 'Artworks' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if amenity=bench)" + "description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"The seating is made from wood\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"The seating is made from metal\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "stone" + "value": "stone", + "description": "material=stone is displayed as \"The seating is made from stone\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"The seating is made from concrete\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"The seating is made from plastic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "steel" + "value": "steel", + "description": "material=steel is displayed as \"The seating is made from steel\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "direction", - "description": "Layer 'Artworks' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if two_sided!=yes & amenity=bench)" + "description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_direction", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "colour", - "description": "Layer 'Artworks' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if amenity=bench)" + "description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "brown" + "value": "brown", + "description": "colour=brown is displayed as \"Colour: brown\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "green" + "value": "green", + "description": "colour=green is displayed as \"Colour: green\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "gray" + "value": "gray", + "description": "colour=gray is displayed as \"Colour: gray\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "white" + "value": "white", + "description": "colour=white is displayed as \"Colour: white\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "red" + "value": "red", + "description": "colour=red is displayed as \"Colour: red\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "black" + "value": "black", + "description": "colour=black is displayed as \"Colour: black\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "blue" + "value": "blue", + "description": "colour=blue is displayed as \"Colour: blue\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "yellow" + "value": "yellow", + "description": "colour=yellow is displayed as \"Colour: yellow\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "survey:date", - "description": "Layer 'Artworks' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if amenity=bench)" + "description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_survey_date", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') Picking this answer will delete the key survey:date. (This is only shown if amenity=bench)", - "value": "" + "description": "survey:date= is displayed as \"Surveyed today!\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_survey_date", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "inscription", - "description": "Layer 'Artworks' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if amenity=bench)" + "description": "Values of `inscription` are shown with \"This bench has the following inscription:

{inscription}

\" and can be updated. The question is \"Does this bench have an inscription?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "inscription", - "description": "Layer 'Artworks' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Ghost Signs') Picking this answer will delete the key inscription. (This is only shown if amenity=bench)", - "value": "" + "description": "inscription= is displayed as \"This bench probably does not not have an inscription\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "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 'Ghost Signs') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "historic", - "description": "Layer 'Artworks' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)", - "value": "" + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "not:historic", - "description": "Layer 'Artworks' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not 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" + "value": "memorial", + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "historic", + "value": "wayside_shrine", + "description": "historic=wayside_shrine is displayed as \"This artwork acts as a wayside shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#doubles_as_wayside_shrine", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "historic", + "description": "historic= is displayed as \"This artwork does not act as a wayside shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#doubles_as_wayside_shrine", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "name", + "description": "Values of `name` are shown with \"The name of this shrine is {name}\" and can be updated. The question is \"What's the name of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#shrine_name", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "noname", + "value": "yes", + "description": "noname=yes is displayed as \"This shrine does not have a name\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#shrine_name", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "description": "Values of `religion` are shown with \"This shrine is {religion}\" and can be updated. The question is \"To which religion is this shrine dedicated?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "christian", + "description": "religion=christian is displayed as \"This is a Christian shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "buddhist", + "description": "religion=buddhist is displayed as \"This is a Buddhist shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "hindu", + "description": "religion=hindu is displayed as \"This is a Hindu shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "jain", + "description": "religion=jain is displayed as \"This is a Jain shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "jewish", + "description": "religion=jewish is displayed as \"This is a Jewish shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "muslim", + "description": "religion=muslim is displayed as \"This is an Islamic shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "pagan", + "description": "religion=pagan is displayed as \"This is a Pagan shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "shinto", + "description": "religion=shinto is displayed as \"This is a Shinto shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "sikh", + "description": "religion=sikh is displayed as \"This is a Sikh shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "taoist", + "description": "religion=taoist is displayed as \"This is a Taoist shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "zoroastrian", + "description": "religion=zoroastrian is displayed as \"This is a Zoroastrian shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious denomination is {denomination}\" and can be updated. The question is \"What's the Christian denomination of the shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "catholic", + "description": "denomination=catholic is displayed as \"The religious subdenomination is Catholic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "roman_catholic", + "description": "denomination=roman_catholic is displayed as \"The religious subdenomination is Roman Catholic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "orthodox", + "description": "denomination=orthodox is displayed as \"The religious subdenomination is Orthodox\" by layers Artworks, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "greek_orthodox", + "description": "denomination=greek_orthodox is displayed as \"The religious subdenomination is Greek-Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "russian_orthodox", + "description": "denomination=russian_orthodox is displayed as \"The religious subdenomination is Russian-Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "serbian_orthodox", + "description": "denomination=serbian_orthodox is displayed as \"The religious subdenomination is Serbian Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "protestant", + "description": "denomination=protestant is displayed as \"The religious subdenomination is Protestant\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "anglican", + "description": "denomination=anglican is displayed as \"The religious subdenomination is Anglican\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "adventist", + "description": "denomination=adventist is displayed as \"The religious subdenomination is Adventist\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "evangelical", + "description": "denomination=evangelical is displayed as \"The religious subdenomination is evangelical\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Muslim denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "shia", + "description": "denomination=shia is displayed as \"The religious subdenomination is Shia\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "sunni", + "description": "denomination=sunni is displayed as \"The religious subdenomination is Sunni\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "sufi", + "description": "denomination=sufi is displayed as \"The religious subdenomination is Sufi\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Jewish denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "conservative", + "description": "denomination=conservative is displayed as \"The religious subdenomination is Conservative\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "hasidic", + "description": "denomination=hasidic is displayed as \"The religious subdenomination is Hasidic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "reform", + "description": "denomination=reform is displayed as \"The religious subdenomination is Reform\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The denomination of this shrine is {denomination}\" and can be updated. The question is \"What's the denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork_on_wall.md#denomination_other", + "icon_url": "./assets/themes/artwork/artwork.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_glutenfree.json b/Docs/TagInfo/mapcomplete_glutenfree.json index 9ad8a91b84..6792d4d116 100644 --- a/Docs/TagInfo/mapcomplete_glutenfree.json +++ b/Docs/TagInfo/mapcomplete_glutenfree.json @@ -7,2305 +7,2636 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/questions/glutenfree.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Glutenfree has a layer Restaurants and fast food showing features with this tag", - "value": "fast_food" + "value": "fast_food", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Glutenfree has a layer Restaurants and fast food showing features with this tag", - "value": "restaurant" + "value": "restaurant", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "The MapComplete theme Glutenfree has a layer Restaurants and fast food showing features with this tag" + "description": "Features with this tag are displayed by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "id", - "description": "Layer 'Restaurants and fast food' 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 'Glutenfree') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "name", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `name` are shown with \"The name of this business is {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Name", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "fast_food" + "value": "fast_food", + "description": "amenity=fast_food is displayed as \"This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "restaurant" + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant, focused on creating a nice experience where one is served at the table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Glutenfree')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Restaurants and fast food' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Glutenfree')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Restaurants and fast food' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Glutenfree')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Restaurants and fast food' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Glutenfree')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Restaurants and fast food' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Glutenfree')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "payment:cash", - "description": "Layer 'Restaurants and fast food' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Restaurants and fast food' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "location", - "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Glutenfree') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Glutenfree') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Glutenfree') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Glutenfree') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `cuisine` are shown with \"This place mostly serves {cuisine}\" and can be updated. The question is \"What kind of food is served here?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'Pizzeria' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "pizza" + "value": "pizza", + "description": "cuisine=pizza is displayed as \"Pizzeria\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'Friture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "friture" + "value": "friture", + "description": "cuisine=friture is displayed as \"Friture\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Serves mainly pasta' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "pasta" + "value": "pasta", + "description": "cuisine=pasta is displayed as \"Serves mainly pasta\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'Kebab shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "kebab" + "value": "kebab", + "description": "cuisine=kebab is displayed as \"Kebab shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'Sandwich shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "sandwich" + "value": "sandwich", + "description": "cuisine=sandwich is displayed as \"Sandwich shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgersrestaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "burger" + "value": "burger", + "description": "cuisine=burger is displayed as \"Burgersrestaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "sushi" + "value": "sushi", + "description": "cuisine=sushi is displayed as \"Sushi restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffeebar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "coffee" + "value": "coffee", + "description": "cuisine=coffee is displayed as \"Coffeebar\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'Italian restaurant (which serves more than pasta and pizza)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "italian" + "value": "italian", + "description": "cuisine=italian is displayed as \"Italian restaurant (which serves more than pasta and pizza)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "french" + "value": "french", + "description": "cuisine=french is displayed as \"French restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "chinese" + "value": "chinese", + "description": "cuisine=chinese is displayed as \"Chinese\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "greek" + "value": "greek", + "description": "cuisine=greek is displayed as \"Greek\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "indian" + "value": "indian", + "description": "cuisine=indian is displayed as \"Indian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "turkish" + "value": "turkish", + "description": "cuisine=turkish is displayed as \"Turkish restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "thai" + "value": "thai", + "description": "cuisine=thai is displayed as \"Thai restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=mexican with a fixed text, namely 'Mexican dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "mexican " + "value": "mexican ", + "description": "cuisine=mexican is displayed as \"Mexican dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=japanese with a fixed text, namely 'Japanese dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "japanese " + "value": "japanese ", + "description": "cuisine=japanese is displayed as \"Japanese dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chicken with a fixed text, namely 'Chicken based dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "chicken " + "value": "chicken ", + "description": "cuisine=chicken is displayed as \"Chicken based dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=seafood with a fixed text, namely 'Seafood dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "seafood " + "value": "seafood ", + "description": "cuisine=seafood is displayed as \"Seafood dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "image", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website:menu", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website:menu' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `website:menu` are shown with \"{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage is the menu published?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#menu_website", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=required with a fixed text, namely 'A reservation is required at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if takeaway!=only)", - "value": "required" + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=recommended with a fixed text, namely 'A reservation is not required, but still recommended to make sure you get a table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if takeaway!=only)", - "value": "recommended" + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=yes with a fixed text, namely 'Reservation is possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if takeaway!=only)", - "value": "yes" + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=no with a fixed text, namely 'Reservation is not possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if takeaway!=only)", - "value": "no" + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" + "value": "only", + "description": "takeaway=only is displayed as \"This is a take-away only business\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "takeaway=yes is displayed as \"Take-away is possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "takeaway=no is displayed as \"Take-away is not possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (possibly via a third party)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "delivery=yes is displayed as \"This business does home delivery (possibly via a third party)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "delivery=no is displayed as \"This business does not deliver at home\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=yes with a fixed text, namely 'This fast-food restaurant has a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if amenity=fast_food)", - "value": "yes" + "value": "yes", + "description": "drive_through=yes is displayed as \"This fast-food restaurant has a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=no with a fixed text, namely 'This fast-food restaurant does not have a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if amenity=fast_food)", - "value": "no" + "value": "no", + "description": "drive_through=no is displayed as \"This fast-food restaurant does not have a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours:drive_through' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if drive_through=yes)" + "description": "Values of `opening_hours:drive_through` are shown with \"

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}\" and can be updated. The question is \"What are the opening hours of the drive-through?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows opening_hours:drive_through= with a fixed text, namely 'The opening hours of the drive-through are the same as the restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') Picking this answer will delete the key opening_hours:drive_through. (This is only shown if drive_through=yes)", - "value": "" + "description": "opening_hours:drive_through= is displayed as \"The opening hours of the drive-through are the same as the restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg;cross_bottom_right:red" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Some vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"All dishes are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegetarian version, but this should be demanded' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegetarian=on_demand is displayed as \"Some dishes might be adapted to a vegetarian version, but this should be demanded\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"Some vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"All dishes are vegan\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegan version if asked for' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegan=on_demand is displayed as \"Some dishes might be adapted to a vegan version if asked for\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:halal=no is displayed as \"There are no halal options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:halal=limited is displayed as \"There is a small halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:halal=yes is displayed as \"There is a halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:halal=only is displayed as \"Only halal options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'There are no organic options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"There are no organic options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'There is an organic menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"There is an organic menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'Serves only vegetarian snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"Serves only vegetarian snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Only a small selection of snacks are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'Serves only vegan snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"Serves only vegan snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"A small selection of vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'Organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"Organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'No organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"No organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "vegetable" + "value": "vegetable", + "description": "friture:oil=vegetable is displayed as \"The frying is done with vegetable oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "animal" + "value": "animal", + "description": "friture:oil=animal is displayed as \"The frying is done with animal oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "reusable_packaging:accept=yes is displayed as \"You can bring your own containers to get your order, saving on single-use packaging material and thus waste\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "reusable_packaging:accept=no is displayed as \"Bringing your own container is not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "reusable_packaging:accept=only is displayed as \"You must bring your own container to order here.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if _country!~^(al|be)$)", - "value": "yes" + "value": "yes", + "description": "smoking=yes is displayed as \"Smoking is allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#smoking", + "icon_url": "./assets/layers/questions/smoking.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if _country!~^(al|be)$)", - "value": "no" + "value": "no", + "description": "smoking=no is displayed as \"Smoking is not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#smoking", + "icon_url": "./assets/layers/questions/no_smoking.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "outside", + "description": "smoking=outside is displayed as \"Smoking is allowed outside.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#smoking", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" + "value": "limited", + "description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "ask" + "value": "ask", + "description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "outdoor_seating", - "description": "Layer 'Restaurants and fast food' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#seating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "indoor_seating", - "description": "Layer 'Restaurants and fast food' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#seating", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Glutenfree has a layer Ice cream parlors showing features with this tag", - "value": "ice_cream" - }, - { - "key": "diet:gluten_free", - "description": "The MapComplete theme Glutenfree has a layer Ice cream parlors showing features with this tag" - }, - { - "key": "image", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" - }, - { - "key": "id", - "description": "Layer 'Ice cream parlors' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "ice_cream", + "description": "Features with this tag are displayed by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_glutenfree.md", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "name", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Glutenfree')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "contact:phone", - "description": "Layer 'Ice cream parlors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "email", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "contact:email", - "description": "Layer 'Ice cream parlors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "operator:email", - "description": "Layer 'Ice cream parlors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "website", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "contact:website", - "description": "Layer 'Ice cream parlors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "description": "Values of `name` are shown with \"This ice cream parlor is named {name}\" and can be updated. The question is \"What is the name of this ice cream parlor?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_glutenfree.md#1", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=only with a fixed text, namely 'This place only sells vegan products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"This place only sells vegan products\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_glutenfree.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=yes with a fixed text, namely 'This shop has a big vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"This shop has a big vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_glutenfree.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=limited with a fixed text, namely 'This shop has a limited vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"This shop has a limited vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_glutenfree.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=no with a fixed text, namely 'This shop has no vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" - }, - { - "key": "payment:cash", - "description": "Layer 'Ice cream parlors' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Ice cream parlors' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Ice cream parlors' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"This shop has no vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_glutenfree.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "shop", - "description": "The MapComplete theme Glutenfree has a layer Shop showing features with this tag" + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Glutenfree has a layer Shop showing features with this tag", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Glutenfree has a layer Shop showing features with this tag", - "value": "key_cutter" - }, - { - "key": "diet:gluten_free", - "description": "The MapComplete theme Glutenfree has a layer Shop showing features with this tag" - }, - { - "key": "image", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" - }, - { - "key": "id", - "description": "Layer 'Shop' 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 'Glutenfree') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "key_cutter", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Glutenfree')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "contact:website", - "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "email", - "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "contact:email", - "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "operator:email", - "description": "Layer 'Shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "contact:phone", - "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Glutenfree')" - }, - { - "key": "payment:cash", - "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "level", - "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Glutenfree') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Glutenfree') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Glutenfree') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Glutenfree') (This is only shown if repeat_on=)", - "value": "-1" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Glutenfree') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "unleashed" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Glutenfree')", - "value": "outside" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "description", - "description": "Layer 'Shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Glutenfree')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#description", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_guideposts.json b/Docs/TagInfo/mapcomplete_guideposts.json index 7a5ba5bf5a..164b91a4b0 100644 --- a/Docs/TagInfo/mapcomplete_guideposts.json +++ b/Docs/TagInfo/mapcomplete_guideposts.json @@ -7,62 +7,125 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/guidepost/guidepost.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "information", - "description": "The MapComplete theme Guideposts has a layer Guideposts showing features with this tag", - "value": "guidepost" + "value": "guidepost", + "description": "Features with this tag are displayed by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "id", - "description": "Layer 'Guideposts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Guideposts') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "panoramax", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "mapillary", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "wikidata", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "wikipedia", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "bicycle", - "description": "Layer 'Guideposts' shows bicycle=yes with a fixed text, namely 'This guidepost shows bicycle routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"This guidepost shows bicycle routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "hiking", - "description": "Layer 'Guideposts' shows hiking=yes with a fixed text, namely 'This guidepost shows hiking routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')", - "value": "yes" + "value": "yes", + "description": "hiking=yes is displayed as \"This guidepost shows hiking routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "mtb", - "description": "Layer 'Guideposts' shows mtb=yes with a fixed text, namely 'This guidepost shows mountain bike routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')", - "value": "yes" + "value": "yes", + "description": "mtb=yes is displayed as \"This guidepost shows mountain bike routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "horse", - "description": "Layer 'Guideposts' shows horse=yes with a fixed text, namely 'This guidepost shows horse riding routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')", - "value": "yes" + "value": "yes", + "description": "horse=yes is displayed as \"This guidepost shows horse riding routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "ski", - "description": "Layer 'Guideposts' shows ski=yes with a fixed text, namely 'This guidepost shows ski routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')", - "value": "yes" + "value": "yes", + "description": "ski=yes is displayed as \"This guidepost shows ski routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "name", + "description": "Values of `name` are shown with \"Name noted on the guidepost: {name}\" and can be updated. The question is \"What is the name noted on this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "noname", + "value": "yes", + "description": "noname=yes is displayed as \"There is no name noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "ref", + "description": "Values of `ref` are shown with \"Reference number of the guidepost: {ref}\" and can be updated. The question is \"What is the reference number of this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "noref", + "value": "yes", + "description": "noref=yes is displayed as \"There is no reference number noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "ele", + "description": "Values of `ele` are shown with \"Elevation noted on the guidepost: {ele} m\" and can be updated. The question is \"What is the elevation noted on this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "noele", + "value": "yes", + "description": "noele=yes is displayed as \"There is no elevation noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele", + "icon_url": "./assets/layers/guidepost/guidepost.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_hackerspaces.json b/Docs/TagInfo/mapcomplete_hackerspaces.json index 9d0030621d..451ca8728f 100644 --- a/Docs/TagInfo/mapcomplete_hackerspaces.json +++ b/Docs/TagInfo/mapcomplete_hackerspaces.json @@ -7,354 +7,498 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/hackerspaces/glider.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "leisure", - "description": "The MapComplete theme Hackerspaces and makerspaces has a layer Hackerspace showing features with this tag", - "value": "hackerspace" + "value": "hackerspace", + "description": "Features with this tag are displayed by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "id", - "description": "Layer 'Hackerspace' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "panoramax", - "description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "mapillary", - "description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "wikidata", - "description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "wikipedia", - "description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "hackerspace", - "description": "Layer 'Hackerspace' shows hackerspace=makerspace with a fixed text, namely 'This is a makerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "makerspace" + "value": "makerspace", + "description": "hackerspace=makerspace is displayed as \"This is a makerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#is_makerspace", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "hackerspace", - "description": "Layer 'Hackerspace' shows hackerspace= with a fixed text, namely 'This is a traditional (software oriented) hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') Picking this answer will delete the key hackerspace.", - "value": "" + "description": "hackerspace= is displayed as \"This is a traditional (software oriented) hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#is_makerspace", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "hackerspace", - "description": "Layer 'Hackerspace' shows hackerspace=hacklab with a fixed text, namely 'This is a hacklab which is mostly focussed on basic computer skills, using recycled devices and/or providing internet to the community. This is typically located in autonomous spaces, squats or social facilities' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "hacklab" + "value": "hacklab", + "description": "hackerspace=hacklab is displayed as \"This is a hacklab which is mostly focussed on basic computer skills, using recycled devices and/or providing internet to the community. This is typically located in autonomous spaces, squats or social facilities\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#is_makerspace", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "name", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "Values of `name` are shown with \"This hackerspace is named {name}\" and can be updated. The question is \"What is the name of this hackerspace?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_name", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "level", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "location", - "description": "Layer 'Hackerspace' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "level", - "description": "Layer 'Hackerspace' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "level", - "description": "Layer 'Hackerspace' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "level", - "description": "Layer 'Hackerspace' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "level", - "description": "Layer 'Hackerspace' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "website", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Hackerspace' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Hackerspace' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Hackerspace' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Hackerspace' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:mastodon", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "Values of `contact:mastodon` are shown with \"{fediverse_link(contact:mastodon)}\" and can be updated. The question is \"What is the Mastodon-handle of {title()}?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#mastodon", + "icon_url": "./assets/svg/mastodon.svg" }, { "key": "opening_hours", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this hackerspace opened?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#opening_hours_24_7", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "opening_hours", - "description": "Layer 'Hackerspace' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Hackerspace' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#opening_hours_24_7", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:3dprinter", - "description": "Layer 'Hackerspace' shows service:3dprinter=yes with a fixed text, namely 'There is a 3D-printer available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:3dprinter=yes is displayed as \"There is a 3D-printer available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_3dprinter", + "icon_url": "./assets/layers/hackerspace/3d_printer.svg" }, { "key": "service:3dprinter", - "description": "Layer 'Hackerspace' shows service:3dprinter=no with a fixed text, namely 'There is no 3D-printer available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:3dprinter=no is displayed as \"There is no 3D-printer available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_3dprinter", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:3dprinter", - "description": "Layer 'Hackerspace' shows service:3dprinter=limited with a fixed text, namely 'There is a limited 3D-printer available at this hackerspace' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:3dprinter=limited is displayed as \"There is a limited 3D-printer available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_3dprinter", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:lasercutter", - "description": "Layer 'Hackerspace' shows service:lasercutter=yes with a fixed text, namely 'There is a laser cutter available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:lasercutter=yes is displayed as \"There is a laser cutter available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_lasercutter", + "icon_url": "./assets/layers/hackerspace/lasercutter.svg" }, { "key": "service:lasercutter", - "description": "Layer 'Hackerspace' shows service:lasercutter=no with a fixed text, namely 'There is no laser cutter available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:lasercutter=no is displayed as \"There is no laser cutter available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_lasercutter", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:lasercutter", - "description": "Layer 'Hackerspace' shows service:lasercutter=limited with a fixed text, namely 'There is a limited laser cutter available at this hackerspace' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:lasercutter=limited is displayed as \"There is a limited laser cutter available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_lasercutter", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:cnc_drilling_machine", - "description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=yes with a fixed text, namely 'There is a CNC drill available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:cnc_drilling_machine=yes is displayed as \"There is a CNC drill available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_cnc_drilling_machine", + "icon_url": "./assets/layers/hackerspace/cnc.svg" }, { "key": "service:cnc_drilling_machine", - "description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=no with a fixed text, namely 'There is no CNC drill available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:cnc_drilling_machine=no is displayed as \"There is no CNC drill available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_cnc_drilling_machine", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:cnc_drilling_machine", - "description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=limited with a fixed text, namely 'There is a limited CNC drill available at this hackerspace' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:cnc_drilling_machine=limited is displayed as \"There is a limited CNC drill available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_cnc_drilling_machine", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:media_studio", - "description": "Layer 'Hackerspace' shows service:media_studio=yes with a fixed text, namely 'There is a multimedia studio available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:media_studio=yes is displayed as \"There is a multimedia studio available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_media_studio", + "icon_url": "./assets/layers/hackerspace/media_studio.svg" }, { "key": "service:media_studio", - "description": "Layer 'Hackerspace' shows service:media_studio=no with a fixed text, namely 'There is no multimedia studio available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:media_studio=no is displayed as \"There is no multimedia studio available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_media_studio", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:media_studio", - "description": "Layer 'Hackerspace' shows service:media_studio=limited with a fixed text, namely 'There is a limited multimedia studio available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:media_studio=limited is displayed as \"There is a limited multimedia studio available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_media_studio", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:sewing_machine", - "description": "Layer 'Hackerspace' shows service:sewing_machine=yes with a fixed text, namely 'There is a sewing machine available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:sewing_machine=yes is displayed as \"There is a sewing machine available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_sewing_machine", + "icon_url": "./assets/layers/hackerspace/sewing_machine.svg" }, { "key": "service:sewing_machine", - "description": "Layer 'Hackerspace' shows service:sewing_machine=no with a fixed text, namely 'There is no sewing machine available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:sewing_machine=no is displayed as \"There is no sewing machine available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_sewing_machine", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:sewing_machine", - "description": "Layer 'Hackerspace' shows service:sewing_machine=limited with a fixed text, namely 'There is a limited sewing machine available at this hackerspace' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:sewing_machine=limited is displayed as \"There is a limited sewing machine available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_sewing_machine", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:workshop:wood", - "description": "Layer 'Hackerspace' shows service:workshop:wood=yes with a fixed text, namely 'There is a woodworking workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:workshop:wood=yes is displayed as \"There is a woodworking workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_wood", + "icon_url": "./assets/layers/hackerspace/woodworking.svg" }, { "key": "service:workshop:wood", - "description": "Layer 'Hackerspace' shows service:workshop:wood=no with a fixed text, namely 'There is no woodworking workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:workshop:wood=no is displayed as \"There is no woodworking workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_wood", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:workshop:wood", - "description": "Layer 'Hackerspace' shows service:workshop:wood=limited with a fixed text, namely 'There is a limited woodworking workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:workshop:wood=limited is displayed as \"There is a limited woodworking workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_wood", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:workshop:ceramics", - "description": "Layer 'Hackerspace' shows service:workshop:ceramics=yes with a fixed text, namely 'There is a ceramics workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:workshop:ceramics=yes is displayed as \"There is a ceramics workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_ceramics", + "icon_url": "./assets/layers/hackerspace/ceramics.svg" }, { "key": "service:workshop:ceramics", - "description": "Layer 'Hackerspace' shows service:workshop:ceramics=no with a fixed text, namely 'There is no ceramics workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:workshop:ceramics=no is displayed as \"There is no ceramics workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_ceramics", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:workshop:ceramics", - "description": "Layer 'Hackerspace' shows service:workshop:ceramics=limited with a fixed text, namely 'There is a limited ceramics workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:workshop:ceramics=limited is displayed as \"There is a limited ceramics workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_ceramics", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:workshop:metal", - "description": "Layer 'Hackerspace' shows service:workshop:metal=yes with a fixed text, namely 'There is a metal workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:workshop:metal=yes is displayed as \"There is a metal workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_metal", + "icon_url": "./assets/layers/hackerspace/metal.svg" }, { "key": "service:workshop:metal", - "description": "Layer 'Hackerspace' shows service:workshop:metal=no with a fixed text, namely 'There is no metal workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:workshop:metal=no is displayed as \"There is no metal workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_metal", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:workshop:metal", - "description": "Layer 'Hackerspace' shows service:workshop:metal=limited with a fixed text, namely 'There is a limited metal workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:workshop:metal=limited is displayed as \"There is a limited metal workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_metal", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Hackerspace' shows service:bicycle:diy=yes with a fixed text, namely 'There is a bicycle repair workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"There is a bicycle repair workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_bicycle_diy", + "icon_url": "./assets/layers/hackerspace/bicycle.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Hackerspace' shows service:bicycle:diy=no with a fixed text, namely 'There is no bicycle repair workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"There is no bicycle repair workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_bicycle_diy", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Hackerspace' shows service:bicycle:diy=limited with a fixed text, namely 'There is a limited bicycle repair workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "service:bicycle:diy=limited is displayed as \"There is a limited bicycle repair workshop available at this hackerspace\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_bicycle_diy", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "wheelchair", - "description": "Layer 'Hackerspace' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#wheelchair_access", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "wheelchair", - "description": "Layer 'Hackerspace' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#wheelchair_access", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "wheelchair", - "description": "Layer 'Hackerspace' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#wheelchair_access", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "wheelchair", - "description": "Layer 'Hackerspace' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#wheelchair_access", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "drink:club-mate", - "description": "Layer 'Hackerspace' shows drink:club-mate=yes with a fixed text, namely 'This hackerspace serves Club-Mate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "drink:club-mate=yes is displayed as \"This hackerspace serves Club-Mate\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hs_club_mate", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "drink:club-mate", - "description": "Layer 'Hackerspace' shows drink:club-mate=no with a fixed text, namely 'This hackerspace does not serve Club-Mate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "drink:club-mate=no is displayed as \"This hackerspace does not serve Club-Mate\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hs_club_mate", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "start_date", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')" + "description": "Values of `start_date` are shown with \"This hackerspace was founded at {start_date}\" and can be updated. The question is \"When was this hackerspace founded?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_start_date", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "internet_access", - "description": "Layer 'Hackerspace' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Hackerspace' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Hackerspace' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "internet_access", - "description": "Layer 'Hackerspace' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Hackerspace' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "internet_access", - "description": "Layer 'Hackerspace' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Hackerspace' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_fee", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Hackerspace' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_fee", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Hackerspace' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_fee", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Hackerspace' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_ssid", + "icon_url": "./assets/themes/hackerspaces/glider.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Hackerspace' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Hackerspace", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_ssid", + "icon_url": "./assets/themes/hackerspaces/glider.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_hailhydrant.json b/Docs/TagInfo/mapcomplete_hailhydrant.json index 6a4d5131c5..61872299af 100644 --- a/Docs/TagInfo/mapcomplete_hailhydrant.json +++ b/Docs/TagInfo/mapcomplete_hailhydrant.json @@ -7,322 +7,308 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/hailhydrant/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "emergency", - "description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of hydrants showing features with this tag", - "value": "fire_hydrant" + "value": "fire_hydrant", + "description": "Features with this tag are displayed by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "id", - "description": "Layer 'Map of hydrants' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "colour", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `colour` are shown with \"The hydrant color is {colour}\" and can be updated. The question is \"What color is the hydrant?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "colour", - "description": "Layer 'Map of hydrants' shows colour=yellow with a fixed text, namely 'The hydrant color is yellow.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "yellow" + "value": "yellow", + "description": "colour=yellow is displayed as \"The hydrant color is yellow.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "colour", - "description": "Layer 'Map of hydrants' shows colour=red with a fixed text, namely 'The hydrant color is red.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "red" + "value": "red", + "description": "colour=red is displayed as \"The hydrant color is red.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:type' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `fire_hydrant:type` are shown with \" Hydrant type: {fire_hydrant:type}\" and can be updated. The question is \"What type of hydrant is it?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type=pillar with a fixed text, namely 'Pillar type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "pillar" + "value": "pillar", + "description": "fire_hydrant:type=pillar is displayed as \"Pillar type.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant_pillar.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type=pipe with a fixed text, namely 'Pipe type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "pipe" + "value": "pipe", + "description": "fire_hydrant:type=pipe is displayed as \"Pipe type.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant_unknown.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type=wall with a fixed text, namely 'Wall type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "wall" + "value": "wall", + "description": "fire_hydrant:type=wall is displayed as \"Wall type.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant_unknown.svg" }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type=underground with a fixed text, namely 'Underground type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "underground" + "value": "underground", + "description": "fire_hydrant:type=underground is displayed as \"Underground type.\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type", + "icon_url": "./assets/themes/hailhydrant/hydrant_underground.svg" }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows emergency=fire_hydrant with a fixed text, namely 'The hydrant is (fully or partially) working' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "fire_hydrant" + "value": "fire_hydrant", + "description": "emergency=fire_hydrant is displayed as \"The hydrant is (fully or partially) working\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "disused:emergency", - "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "fire_hydrant" + "value": "fire_hydrant", + "description": "disused:emergency=fire_hydrant & emergency= is displayed as \"The hydrant is unavailable\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') Picking this answer will delete the key emergency.", - "value": "" + "description": "disused:emergency=fire_hydrant & emergency= is displayed as \"The hydrant is unavailable\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "removed:emergency", - "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "fire_hydrant" + "value": "fire_hydrant", + "description": "removed:emergency=fire_hydrant & emergency= is displayed as \"The hydrant has been removed\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') Picking this answer will delete the key emergency.", - "value": "" + "description": "removed:emergency=fire_hydrant & emergency= is displayed as \"The hydrant has been removed\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "fire_hydrant:diameter", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:diameter' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `fire_hydrant:diameter` are shown with \"Pipe diameter: {canonical(fire_hydrant:diameter)}\" and can be updated. The question is \"What is the pipe diameter of this hydrant?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_diameter", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "couplings", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `couplings` are shown with \"Number of couplings: {couplings}\" and can be updated. The question is \"How many couplings does this fire hydrant have?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_number_of_couplings", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "couplings:type", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:type' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `couplings:type` are shown with \"Couplings: {couplings:type}\" and can be updated. The question is \"What kind of couplings does this hydrant have?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "couplings:type", - "description": "Layer 'Map of hydrants' shows couplings:type=Storz with a fixed text, namely 'Storz coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "Storz" + "value": "Storz", + "description": "couplings:type=Storz is displayed as \"Storz coupling\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings", + "icon_url": "./assets/layers/hydrant/storz.jpg" }, { "key": "couplings:type", - "description": "Layer 'Map of hydrants' shows couplings:type=UNI with a fixed text, namely 'UNI coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "UNI" + "value": "UNI", + "description": "couplings:type=UNI is displayed as \"UNI coupling\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "couplings:type", - "description": "Layer 'Map of hydrants' shows couplings:type=Barcelona with a fixed text, namely 'Barcelona coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "Barcelona" + "value": "Barcelona", + "description": "couplings:type=Barcelona is displayed as \"Barcelona coupling\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings", + "icon_url": "./assets/layers/hydrant/barcelona.jpg" }, { "key": "couplings:diameters", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:diameters' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `couplings:diameters` are shown with \"Coupling diameters: {couplings:diameters}\" and can be updated. The question is \"What diameter are the couplings of this hydrant?\" by layer Map of hydrants", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings_diameters", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "image", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "panoramax", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "mapillary", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "wikidata", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "wikipedia", - "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images", + "icon_url": "./assets/themes/hailhydrant/hydrant.svg" }, { "key": "emergency", - "description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of fire extinguishers showing features with this tag", - "value": "fire_extinguisher" - }, - { - "key": "id", - "description": "Layer 'Map of fire extinguishers' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "fire_extinguisher", + "description": "Features with this tag are displayed by layer Map of fire extinguishers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers' shows and asks freeform values for key 'location' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `location` are shown with \"Location: {location}\" and can be updated. The question is \"Where is it positioned?\" by layer Map of fire extinguishers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers' shows location=indoor with a fixed text, namely 'Found indoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "indoor" + "value": "indoor", + "description": "location=indoor is displayed as \"Found indoors.\" by layer Map of fire extinguishers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" }, { "key": "location", - "description": "Layer 'Map of fire extinguishers' shows location=outdoor with a fixed text, namely 'Found outdoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "outdoor" - }, - { - "key": "image", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "outdoor", + "description": "location=outdoor is displayed as \"Found outdoors.\" by layer Map of fire extinguishers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" }, { "key": "amenity", - "description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of fire stations showing features with this tag", - "value": "fire_station" - }, - { - "key": "id", - "description": "Layer 'Map of fire stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "fire_station", + "description": "Features with this tag are displayed by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "name", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `name` are shown with \"This station is called {name}.\" and can be updated. The question is \"What is the name of this fire station?\" by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_name", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "addr:street", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `addr:street` are shown with \"This station is along a highway called {addr:street}.\" and can be updated. The question is \" What is the street name where the station located?\" by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_street", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "addr:place", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:place' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `addr:place` are shown with \"This station is found within {addr:place}.\" and can be updated. The question is \"Where is the station located? (e.g. name of neighborhood, villlage, or town)\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_place", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `operator` are shown with \"This station is operated by {operator}.\" and can be updated. The question is \"What agency operates this station?\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator", - "description": "Layer 'Map of fire stations' shows operator=Bureau of Fire Protection & operator:type=government with a fixed text, namely 'Bureau of Fire Protection' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "Bureau of Fire Protection" + "value": "Bureau of Fire Protection", + "description": "operator=Bureau of Fire Protection & operator:type=government is displayed as \"Bureau of Fire Protection\" by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator=Bureau of Fire Protection & operator:type=government with a fixed text, namely 'Bureau of Fire Protection' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "government" + "value": "government", + "description": "operator=Bureau of Fire Protection & operator:type=government is displayed as \"Bureau of Fire Protection\" by layer Map of fire stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator:type' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `operator:type` are shown with \"The operator is a(n) {operator:type} entity.\" and can be updated. The question is \"How is the station operator classified?\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator:type=government with a fixed text, namely 'The station is operated by the government.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "government" + "value": "government", + "description": "operator:type=government is displayed as \"The station is operated by the government.\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator:type=community with a fixed text, namely 'The station is operated by a community-based, or informal organization.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "community" + "value": "community", + "description": "operator:type=community is displayed as \"The station is operated by a community-based, or informal organization.\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator:type=ngo with a fixed text, namely 'The station is operated by a formal group of volunteers.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "ngo" + "value": "ngo", + "description": "operator:type=ngo is displayed as \"The station is operated by a formal group of volunteers.\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "operator:type", - "description": "Layer 'Map of fire stations' shows operator:type=private with a fixed text, namely 'The station is privately operated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "private" - }, - { - "key": "image", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "private", + "description": "operator:type=private is displayed as \"The station is privately operated.\" by layers Map of fire stations, Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator", + "icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" }, { "key": "emergency", - "description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of ambulance stations showing features with this tag", - "value": "ambulance_station" - }, - { - "key": "id", - "description": "Layer 'Map of ambulance stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "ambulance_station", + "description": "Features with this tag are displayed by layer Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md", + "icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg" }, { "key": "name", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" + "description": "Values of `name` are shown with \"This station is called {name}.\" and can be updated. The question is \"What is the name of this ambulance station?\" by layer Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md#ambulance_name", + "icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg" }, { "key": "addr:street", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" - }, - { - "key": "addr:place", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:place' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" - }, - { - "key": "operator", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator:type' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows operator:type=government with a fixed text, namely 'The station is operated by the government.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "government" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows operator:type=community with a fixed text, namely 'The station is operated by a community-based, or informal organization.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "community" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows operator:type=ngo with a fixed text, namely 'The station is operated by a formal group of volunteers.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "ngo" - }, - { - "key": "operator:type", - "description": "Layer 'Map of ambulance stations' shows operator:type=private with a fixed text, namely 'The station is privately operated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')", - "value": "private" - }, - { - "key": "image", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Values of `addr:street` are shown with \"This station is along a highway called {addr:street}.\" and can be updated. The question is \"What is the street name where the station located?\" by layer Map of ambulance stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md#ambulance_street", + "icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_healthcare.json b/Docs/TagInfo/mapcomplete_healthcare.json index 6d01fb6b5a..e4d70343fa 100644 --- a/Docs/TagInfo/mapcomplete_healthcare.json +++ b/Docs/TagInfo/mapcomplete_healthcare.json @@ -7,2000 +7,2178 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/doctors/doctors.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Healthcare has a layer Doctors showing features with this tag", - "value": "doctors" + "value": "doctors", + "description": "Features with this tag are displayed by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "id", - "description": "Layer 'Doctors' 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 'Healthcare') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Doctors, Physiotherapist, Dentist, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#images", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "panoramax", - "description": "The layer 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Doctors, Physiotherapist, Dentist, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#images", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "mapillary", - "description": "The layer 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Doctors, Physiotherapist, Dentist, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#images", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "wikidata", - "description": "The layer 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Doctors, Physiotherapist, Dentist, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#images", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "wikipedia", - "description": "The layer 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Doctors, Physiotherapist, Dentist, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#images", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "name", - "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `name` are shown with \"This doctors place is called {name}\" and can be updated. The question is \"What is the name of this doctors place?\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#name", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "opening_hours", - "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Doctors, Physiotherapist, Dentist, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours=\"by appointment\" with a fixed text, namely 'Only by appointment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "\"by appointment\"" + "value": "\"by appointment\"", + "description": "opening_hours=\"by appointment\" is displayed as \"Only by appointment\" by layers Doctors, Physiotherapist", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the mapcomplete.org theme 'Healthcare')" + "description": "opening_hours~^(\"by appointment\"|by appointment)$ is displayed as \"Only by appointment\" by layers Doctors, Physiotherapist", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Healthcare')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Doctors, Physiotherapist, Dentist, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "phone", - "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Doctors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Healthcare')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Doctors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Healthcare')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Doctors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Healthcare')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Doctors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Healthcare')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "addr:street", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#header", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "addr:unit", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#header", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "addr:housenumber", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#header", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "addr:housenumber", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `addr:housenumber` are shown with \"The house number is {addr:housenumber}\" and can be updated. The question is \"What is the number of this house?\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#housenumber", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "nohousenumber", - "description": "Layer 'Doctors' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" + "value": "yes", + "description": "nohousenumber=yes is displayed as \"This building has no house number\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#housenumber", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "addr:street", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Healthcare') (This is only shown if nohousenumber!~^(yes)$)" + "description": "Values of `addr:street` are shown with \"This address is in street {addr:street}\" and can be updated. The question is \"What street is this address located in?\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#street", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "addr:unit", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `addr:unit` are shown with \"The unit number is {addr:unit}\" and can be updated. The question is \"What is the unit number or letter?\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#unit", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "addr:unit", - "description": "Layer 'Doctors' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key addr:unit.", - "value": "" + "description": "addr:unit= is displayed as \"No unit number\" by layers Doctors, Physiotherapist, Dentist, Hospitals, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#unit", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `healthcare:speciality` are shown with \"This doctor is specialized in {healthcare:speciality}\" and can be updated. The question is \"What is this doctor specialized in?\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=general with a fixed text, namely 'This is a general practitioner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "general" + "value": "general", + "description": "healthcare:speciality=general is displayed as \"This is a general practitioner\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=gynaecology with a fixed text, namely 'This is a gynaecologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "gynaecology" + "value": "gynaecology", + "description": "healthcare:speciality=gynaecology is displayed as \"This is a gynaecologist\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=psychiatry with a fixed text, namely 'This is a psychiatrist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "psychiatry" + "value": "psychiatry", + "description": "healthcare:speciality=psychiatry is displayed as \"This is a psychiatrist\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=paediatrics with a fixed text, namely 'This is a paediatrician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "paediatrics" + "value": "paediatrics", + "description": "healthcare:speciality=paediatrics is displayed as \"This is a paediatrician\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/layers/doctors/doctors.svg" }, { "key": "healthcare", - "description": "The MapComplete theme Healthcare has a layer Physiotherapist showing features with this tag", - "value": "physiotherapist" - }, - { - "key": "id", - "description": "Layer 'Physiotherapist' 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 'Healthcare') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Physiotherapist allows to upload images and adds them under the 'panoramax'-tag (and 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 'Physiotherapist allows to upload images and adds them under the 'panoramax'-tag (and 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 'Physiotherapist allows to upload images and adds them under the 'panoramax'-tag (and 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 'Physiotherapist allows to upload images and adds them under the 'panoramax'-tag (and 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 'Physiotherapist allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "physiotherapist", + "description": "Features with this tag are displayed by layer Physiotherapist", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/physiotherapist.md", + "icon_url": "./assets/layers/physiotherapist/doctors.svg" }, { "key": "name", - "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "opening_hours", - "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "opening_hours", - "description": "Layer 'Physiotherapist' shows opening_hours=\"by appointment\" with a fixed text, namely 'Only by appointment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "\"by appointment\"" - }, - { - "key": "opening_hours", - "description": "Layer 'Physiotherapist' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "opening_hours", - "description": "Layer 'Physiotherapist' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Healthcare')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:phone", - "description": "Layer 'Physiotherapist' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "email", - "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:email", - "description": "Layer 'Physiotherapist' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "operator:email", - "description": "Layer 'Physiotherapist' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "website", - "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:website", - "description": "Layer 'Physiotherapist' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "addr:street", - "description": "Layer 'Physiotherapist' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:unit", - "description": "Layer 'Physiotherapist' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Physiotherapist' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Physiotherapist' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Healthcare') (This is only shown if nohousenumber!~^(yes)$)" - }, - { - "key": "addr:unit", - "description": "Layer 'Physiotherapist' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "addr:unit", - "description": "Layer 'Physiotherapist' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key addr:unit.", - "value": "" + "description": "Values of `name` are shown with \"This physiotherapists office is called {name}\" and can be updated. The question is \"What is the name of this physiotherapists office?\" by layer Physiotherapist", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/physiotherapist.md#name", + "icon_url": "./assets/layers/physiotherapist/doctors.svg" }, { "key": "amenity", - "description": "The MapComplete theme Healthcare has a layer Dentist showing features with this tag", - "value": "dentist" - }, - { - "key": "id", - "description": "Layer 'Dentist' 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 'Healthcare') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Dentist allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dentist allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dentist allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dentist allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dentist allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "opening_hours", - "description": "Layer 'Dentist' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "opening_hours", - "description": "Layer 'Dentist' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Healthcare')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Dentist' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:phone", - "description": "Layer 'Dentist' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "email", - "description": "Layer 'Dentist' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:email", - "description": "Layer 'Dentist' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "operator:email", - "description": "Layer 'Dentist' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "website", - "description": "Layer 'Dentist' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:website", - "description": "Layer 'Dentist' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "addr:street", - "description": "Layer 'Dentist' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:unit", - "description": "Layer 'Dentist' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Dentist' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Dentist' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Dentist' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Dentist' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Healthcare') (This is only shown if nohousenumber!~^(yes)$)" - }, - { - "key": "addr:unit", - "description": "Layer 'Dentist' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "addr:unit", - "description": "Layer 'Dentist' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key addr:unit.", - "value": "" + "value": "dentist", + "description": "Features with this tag are displayed by layer Dentist", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dentist.md", + "icon_url": "./assets/layers/dentist/dentist.svg" }, { "key": "name", - "description": "Layer 'Dentist' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `name` are shown with \"This dentist is called {name}\" and can be updated. The question is \"What is the name of this dentist?\" by layer Dentist", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dentist.md#name", + "icon_url": "./assets/layers/dentist/dentist.svg" }, { "key": "amenity", - "description": "The MapComplete theme Healthcare has a layer Hospitals showing features with this tag", - "value": "hospital" + "value": "hospital", + "description": "Features with this tag are displayed by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "amenity", - "description": "The MapComplete theme Healthcare has a layer Hospitals showing features with this tag", - "value": "clinic" - }, - { - "key": "id", - "description": "Layer 'Hospitals' 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 'Healthcare') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "clinic", + "description": "Features with this tag are displayed by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "name", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `name` are shown with \"This hospital is called {name}\" and can be updated. The question is \"What is the name of this hospital?\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#name", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "amenity", - "description": "Layer 'Hospitals' shows amenity=clinic with a fixed text, namely 'This is a clinic - patients can not stay overnight' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "clinic" + "value": "clinic", + "description": "amenity=clinic is displayed as \"This is a clinic - patients can not stay overnight\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#inpatient", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "amenity", - "description": "Layer 'Hospitals' shows amenity=hospital with a fixed text, namely 'This is a hospital - patients can be admitted here for multiple days' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "hospital" - }, - { - "key": "phone", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:phone", - "description": "Layer 'Hospitals' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "email", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:email", - "description": "Layer 'Hospitals' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "operator:email", - "description": "Layer 'Hospitals' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "website", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:website", - "description": "Layer 'Hospitals' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "addr:street", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:unit", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Hospitals' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Healthcare') (This is only shown if nohousenumber!~^(yes)$)" - }, - { - "key": "addr:unit", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "addr:unit", - "description": "Layer 'Hospitals' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key addr:unit.", - "value": "" + "value": "hospital", + "description": "amenity=hospital is displayed as \"This is a hospital - patients can be admitted here for multiple days\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#inpatient", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "opening_hours:visitors", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'opening_hours:visitors' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#oh_visitor", + "icon_url": "./assets/layers/hospital/hospital.svg" }, { "key": "amenity", - "description": "The MapComplete theme Healthcare has a layer Pharmacies showing features with this tag", - "value": "pharmacy" - }, - { - "key": "id", - "description": "Layer 'Pharmacies' 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 'Healthcare') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "pharmacy", + "description": "Features with this tag are displayed by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "name", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "opening_hours", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "opening_hours", - "description": "Layer 'Pharmacies' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Healthcare')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:phone", - "description": "Layer 'Pharmacies' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "email", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:email", - "description": "Layer 'Pharmacies' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "operator:email", - "description": "Layer 'Pharmacies' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "website", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:website", - "description": "Layer 'Pharmacies' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "addr:street", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:unit", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Healthcare')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Pharmacies' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Healthcare') (This is only shown if nohousenumber!~^(yes)$)" - }, - { - "key": "addr:unit", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "addr:unit", - "description": "Layer 'Pharmacies' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key addr:unit.", - "value": "" + "description": "Values of `name` are shown with \"This pharmacy is called {name}\" and can be updated. The question is \"What is the name of the pharmacy?\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#name", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "payment:cash", - "description": "Layer 'Pharmacies' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Pharmacies' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Pharmacies' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Pharmacies, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "shop", - "description": "The MapComplete theme Healthcare has a layer Shop showing features with this tag" + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Healthcare has a layer Shop showing features with this tag", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Healthcare has a layer Shop showing features with this tag", - "value": "key_cutter" + "value": "key_cutter", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "The MapComplete theme Healthcare has a layer Shop showing features with this tag", - "value": "medical_supply" + "value": "medical_supply", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "The MapComplete theme Healthcare has a layer Shop showing features with this tag", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "The MapComplete theme Healthcare has a layer Shop showing features with this tag", - "value": "optician" - }, - { - "key": "id", - "description": "Layer 'Shop' 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 'Healthcare') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "optician", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Healthcare')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:website", - "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "email", - "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:email", - "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "operator:email", - "description": "Layer 'Shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "contact:phone", - "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Healthcare')" - }, - { - "key": "payment:cash", - "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Healthcare') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "location", - "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Healthcare') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Healthcare') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Healthcare') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Healthcare') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Healthcare') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Healthcare') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Healthcare') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Healthcare') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Healthcare') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Healthcare') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Healthcare') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Healthcare') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Healthcare') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Healthcare') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Healthcare') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Healthcare')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "description", - "description": "Layer 'Shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Healthcare')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#description", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_hotels.json b/Docs/TagInfo/mapcomplete_hotels.json index ad563210b7..10e57a14a4 100644 --- a/Docs/TagInfo/mapcomplete_hotels.json +++ b/Docs/TagInfo/mapcomplete_hotels.json @@ -7,293 +7,341 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/tourism_accomodation/hotel.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "tourism", - "description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag", - "value": "hotel" + "value": "hotel", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "tourism", - "description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag", - "value": "hostel" + "value": "hostel", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "tourism", - "description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag", - "value": "apartment" + "value": "apartment", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "tourism", - "description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag", - "value": "chalet" + "value": "chalet", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "tourism", - "description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag", - "value": "motel" + "value": "motel", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "tourism", - "description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag", - "value": "guest_house" + "value": "guest_house", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "tourism", - "description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag", - "value": "camp_site" + "value": "camp_site", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "id", - "description": "Layer 'Tourism accomodation' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hotels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "panoramax", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "mapillary", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wikidata", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wikipedia", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "name", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hotels')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this {title()}?\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#name", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "group_only", - "description": "Layer 'Tourism accomodation' shows group_only=yes with a fixed text, namely 'This hostel is exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if tourism=hostel)", - "value": "yes" + "value": "yes", + "description": "group_only=yes is displayed as \"This hostel is exclusively for groups\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#group_only", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "group_only", - "description": "Layer 'Tourism accomodation' shows group_only=no with a fixed text, namely 'This hostel is not exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if tourism=hostel)", - "value": "no" + "value": "no", + "description": "group_only=no is displayed as \"This hostel is not exclusively for groups\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#group_only", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "brand", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Hotels')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"Is {title()} part of a bigger brand?\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#brand", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "nobrand", - "description": "Layer 'Tourism accomodation' shows nobrand=yes with a fixed text, namely 'Not part of a bigger brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "yes" + "value": "yes", + "description": "nobrand=yes is displayed as \"Not part of a bigger brand\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#brand", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "phone", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Hotels')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Tourism accomodation' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Hotels')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Hotels')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Tourism accomodation' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Hotels')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Tourism accomodation' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Hotels')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Hotels')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Tourism accomodation' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Hotels')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Tourism accomodation, Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "wheelchair", - "description": "Layer 'Tourism accomodation' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#wheelchair_access", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wheelchair", - "description": "Layer 'Tourism accomodation' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#wheelchair_access", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wheelchair", - "description": "Layer 'Tourism accomodation' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#wheelchair_access", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wheelchair", - "description": "Layer 'Tourism accomodation' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#wheelchair_access", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Tourism accomodation' shows toilets:wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "yes" + "value": "yes", + "description": "toilets:wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Tourism accomodation' shows toilets:wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "no" + "value": "no", + "description": "toilets:wheelchair=no is displayed as \"No wheelchair access\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Tourism accomodation' shows toilets:wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "designated" + "value": "designated", + "description": "toilets:wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Hotels')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Tourism accomodation' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_fee", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Tourism accomodation' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_fee", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Tourism accomodation' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_fee", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_ssid", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Tourism accomodation' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_ssid", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "amenity", - "description": "The MapComplete theme Hotels has a layer Love hotels showing features with this tag", - "value": "love_hotel" - }, - { - "key": "id", - "description": "Layer 'Love hotels' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hotels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "love_hotel", + "description": "Features with this tag are displayed by layer Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/love_hotel.md", + "icon_url": "ring" }, { "key": "name", - "description": "Layer 'Love hotels' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hotels')" - }, - { - "key": "phone", - "description": "Layer 'Love hotels' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Hotels')" - }, - { - "key": "contact:phone", - "description": "Layer 'Love hotels' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Hotels')" - }, - { - "key": "email", - "description": "Layer 'Love hotels' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Hotels')" - }, - { - "key": "contact:email", - "description": "Layer 'Love hotels' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Hotels')" - }, - { - "key": "operator:email", - "description": "Layer 'Love hotels' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Hotels')" - }, - { - "key": "website", - "description": "Layer 'Love hotels' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Hotels')" - }, - { - "key": "contact:website", - "description": "Layer 'Love hotels' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Hotels')" + "description": "Values of `name` are shown with \"This love hotel is named {name}\" and can be updated. The question is \"What is the name of this love hotel?\" by layer Love hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/love_hotel.md#name", + "icon_url": "ring" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_icecream.json b/Docs/TagInfo/mapcomplete_icecream.json index ae4f195606..da3aa00029 100644 --- a/Docs/TagInfo/mapcomplete_icecream.json +++ b/Docs/TagInfo/mapcomplete_icecream.json @@ -7,193 +7,273 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/ice_cream/ice_cream.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Icecream has a layer Ice cream parlors showing features with this tag", - "value": "ice_cream" + "value": "ice_cream", + "description": "Features with this tag are displayed by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "id", - "description": "Layer 'Ice cream parlors' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Icecream') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "panoramax", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "mapillary", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wikidata", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wikipedia", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "name", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Icecream')" + "description": "Values of `name` are shown with \"This ice cream parlor is named {name}\" and can be updated. The question is \"What is the name of this ice cream parlor?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#1", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Icecream')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#opening_hours", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Icecream')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#opening_hours", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "phone", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Icecream')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Ice cream parlors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Icecream')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Icecream')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Ice cream parlors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Icecream')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Ice cream parlors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Icecream')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Icecream')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Ice cream parlors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Icecream')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#sugar_free", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#sugar_free", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#sugar_free", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#sugar_free", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#lactose_free", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#lactose_free", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#gluten_free", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#gluten_free", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=only with a fixed text, namely 'This place only sells vegan products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"This place only sells vegan products\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=yes with a fixed text, namely 'This shop has a big vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"This shop has a big vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=limited with a fixed text, namely 'This shop has a limited vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"This shop has a limited vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=no with a fixed text, namely 'This shop has no vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"This shop has no vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "payment:cash", - "description": "Layer 'Ice cream parlors' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Ice cream parlors' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Ice cream parlors' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_indoors.json b/Docs/TagInfo/mapcomplete_indoors.json index 10532eb40c..8ba1d6e0c2 100644 --- a/Docs/TagInfo/mapcomplete_indoors.json +++ b/Docs/TagInfo/mapcomplete_indoors.json @@ -7,800 +7,946 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/entrance/entrance.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "indoor", - "description": "The MapComplete theme Indoors has a layer Indoors showing features with this tag", - "value": "room" + "value": "room", + "description": "Features with this tag are displayed by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md" }, { "key": "indoor", - "description": "The MapComplete theme Indoors has a layer Indoors showing features with this tag", - "value": "area" + "value": "area", + "description": "Features with this tag are displayed by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md" }, { "key": "indoor", - "description": "The MapComplete theme Indoors has a layer Indoors showing features with this tag", - "value": "wall" + "value": "wall", + "description": "Features with this tag are displayed by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md" }, { "key": "indoor", - "description": "The MapComplete theme Indoors has a layer Indoors showing features with this tag", - "value": "door" + "value": "door", + "description": "Features with this tag are displayed by layers Indoors, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md" }, { "key": "indoor", - "description": "The MapComplete theme Indoors has a layer Indoors showing features with this tag", - "value": "level" + "value": "level", + "description": "Features with this tag are displayed by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md" }, { "key": "id", - "description": "Layer 'Indoors' 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 'Indoors') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Indoors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#images" }, { "key": "panoramax", - "description": "The layer 'Indoors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#images" }, { "key": "mapillary", - "description": "The layer 'Indoors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#images" }, { "key": "wikidata", - "description": "The layer 'Indoors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#images" }, { "key": "wikipedia", - "description": "The layer 'Indoors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#images" }, { "key": "level", - "description": "Layer 'Indoors' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Indoors') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Indoors, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#single_level" }, { "key": "location", - "description": "Layer 'Indoors' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Indoors') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#single_level" }, { "key": "level", - "description": "Layer 'Indoors' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#single_level" }, { "key": "level", - "description": "Layer 'Indoors' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#single_level" }, { "key": "level", - "description": "Layer 'Indoors' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#single_level" }, { "key": "level", - "description": "Layer 'Indoors' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Indoors, Elevator, Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#single_level" }, { "key": "ref", - "description": "Layer 'Indoors' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Indoors') (This is only shown if indoor=room | indoor=area | indoor=corridor)" + "description": "Values of `ref` are shown with \"This room has the reference number {ref}\" and can be updated. The question is \"What is the reference number of this room?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#ref" }, { "key": "name", - "description": "Layer 'Indoors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Indoors') (This is only shown if indoor=room | indoor=area | indoor=corridor)" + "description": "Values of `name` are shown with \"This room is named {name}\" and can be updated. The question is \"What is the name of this room?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#name" }, { "key": "room", - "description": "Layer 'Indoors' shows room=administration with a fixed text, namely 'This is a administrative room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "administration" + "value": "administration", + "description": "room=administration is displayed as \"This is a administrative room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_administration.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=auditorium with a fixed text, namely 'This is a auditorium' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "auditorium" + "value": "auditorium", + "description": "room=auditorium is displayed as \"This is a auditorium\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_auditorium.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=bedroom with a fixed text, namely 'This is a bedroom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "bedroom" + "value": "bedroom", + "description": "room=bedroom is displayed as \"This is a bedroom\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_bedroom.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=chapel with a fixed text, namely 'This is a chapel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "chapel" + "value": "chapel", + "description": "room=chapel is displayed as \"This is a chapel\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_chapel.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=class with a fixed text, namely 'This is a classroom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "class" + "value": "class", + "description": "room=class is displayed as \"This is a classroom\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_class.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=classroom with a fixed text, namely 'This is a classroom' (in the mapcomplete.org theme 'Indoors')", - "value": "classroom" + "value": "classroom", + "description": "room=classroom is displayed as \"This is a classroom\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_class.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=computer with a fixed text, namely 'This is a computer room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "computer" + "value": "computer", + "description": "room=computer is displayed as \"This is a computer room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_computer.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=conference with a fixed text, namely 'This is a conference room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "conference" + "value": "conference", + "description": "room=conference is displayed as \"This is a conference room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_conference.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=crypt with a fixed text, namely 'This is a crypt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "crypt" + "value": "crypt", + "description": "room=crypt is displayed as \"This is a crypt\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_crypt.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=kitchen with a fixed text, namely 'This is a kitchen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "kitchen" + "value": "kitchen", + "description": "room=kitchen is displayed as \"This is a kitchen\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_kitchen.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=laboratory with a fixed text, namely 'This is a laboratory' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "laboratory" + "value": "laboratory", + "description": "room=laboratory is displayed as \"This is a laboratory\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_laboratory.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=library with a fixed text, namely 'This is a library' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "library" + "value": "library", + "description": "room=library is displayed as \"This is a library\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_library.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=locker with a fixed text, namely 'This is a locker room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "locker" + "value": "locker", + "description": "room=locker is displayed as \"This is a locker room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_locker.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=nursery with a fixed text, namely 'This is a nursery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "nursery" + "value": "nursery", + "description": "room=nursery is displayed as \"This is a nursery\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_nursery.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=office with a fixed text, namely 'This is an office' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "office" + "value": "office", + "description": "room=office is displayed as \"This is an office\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_office.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=printer with a fixed text, namely 'This is a copy room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "printer" + "value": "printer", + "description": "room=printer is displayed as \"This is a copy room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type" }, { "key": "room", - "description": "Layer 'Indoors' shows room=prison_cell with a fixed text, namely 'This is a prison_cell' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "prison_cell" + "value": "prison_cell", + "description": "room=prison_cell is displayed as \"This is a prison_cell\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_prison_cell.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=restaurant with a fixed text, namely 'This is a restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "restaurant" + "value": "restaurant", + "description": "room=restaurant is displayed as \"This is a restaurant\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_restaurant.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=security_check with a fixed text, namely 'This is a room to perform security checks' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "security_check" + "value": "security_check", + "description": "room=security_check is displayed as \"This is a room to perform security checks\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_security_check.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=sport with a fixed text, namely 'This is a sport room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "sport" + "value": "sport", + "description": "room=sport is displayed as \"This is a sport room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_sport.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=storage with a fixed text, namely 'This is a storage room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "storage" + "value": "storage", + "description": "room=storage is displayed as \"This is a storage room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_storage.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=technical with a fixed text, namely 'This is a technical room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "technical" + "value": "technical", + "description": "room=technical is displayed as \"This is a technical room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_technical.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=toilets with a fixed text, namely 'These are toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "toilets" + "value": "toilets", + "description": "room=toilets is displayed as \"These are toilets\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_toilets.svg" }, { "key": "room", - "description": "Layer 'Indoors' shows room=waiting with a fixed text, namely 'This is a waiting room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "waiting" + "value": "waiting", + "description": "room=waiting is displayed as \"This is a waiting room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_type", + "icon_url": "./assets/layers/indoors/room_waiting.svg" }, { "key": "capacity", - "description": "Layer 'Indoors' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Indoors') (This is only shown if room=waiting | room=restaurant | room=office | room=nursery | room=conference | room=auditorium | room=chapel | room=bedroom | room=classroom)" + "description": "Values of `capacity` are shown with \"At most {capacity} people fit this room\" and can be updated. The question is \"How much people can at most fit in this room?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#room_capacity" }, { "key": "name:etymology:wikidata", - "description": "Layer 'Indoors' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Indoors') (This is only shown if name:etymology!=unknown & name~.+)" + "description": "Values of `name:etymology:wikidata` are shown with \"

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}\" and can be updated. The question is \"What is the Wikidata-item that this object is named after?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#wikipedia_etymology" }, { "key": "access", - "description": "Layer 'Indoors' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Are these toilets publicly accessible?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_access" }, { "key": "access", - "description": "Layer 'Indoors' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_access" }, { "key": "access", - "description": "Layer 'Indoors' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only access to customers\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Indoors' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_access", + "icon_url": "lock" }, { "key": "access", - "description": "Layer 'Indoors' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"Accessible, but one has to ask a key to enter\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Indoors' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_access" }, { "key": "fee", - "description": "Layer 'Indoors' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & access!=no)", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"These are paid toilets\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_fee" }, { "key": "fee", - "description": "Layer 'Indoors' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & access!=no)", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_fee" }, { "key": "charge", - "description": "Layer 'Indoors' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & fee=yes)" + "description": "Values of `charge` are shown with \"The fee is {charge}\" and can be updated. The question is \"How much does one have to pay for these toilets?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_charge" }, { "key": "payment:cash", - "description": "Layer 'Indoors' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#payment_options_split", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Indoors' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Indoors' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#payment_options_split", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:coins", - "description": "Layer 'Indoors' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Indoors' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Indoors' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Indoors' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "opening_hours", - "description": "Layer 'Indoors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & access!=no)" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When are these toilets opened?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#opening_hours_24_7" }, { "key": "opening_hours", - "description": "Layer 'Indoors' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & access!=no)", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Indoors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & access!=no)", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#opening_hours_24_7" }, { "key": "wheelchair", - "description": "Layer 'Indoors' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_wheelchair" }, { "key": "wheelchair", - "description": "Layer 'Indoors' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"No wheelchair access\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_wheelchair" }, { "key": "wheelchair", - "description": "Layer 'Indoors' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_wheelchair" }, { "key": "door:width", - "description": "Layer 'Indoors' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & (wheelchair=yes | wheelchair=designated))" + "description": "Values of `door:width` are shown with \"The door to the wheelchair-accessible toilet is {canonical(door:width)} wide\" and can be updated. The question is \"What is the width of the door to the wheelchair accessible toilet?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#wheelchair_door_width" }, { "key": "toilets:position", - "description": "Layer 'Indoors' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "seated" + "value": "seated", + "description": "toilets:position=seated is displayed as \"There are only seated toilets\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_type" }, { "key": "toilets:position", - "description": "Layer 'Indoors' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "urinal" + "value": "urinal", + "description": "toilets:position=urinal is displayed as \"There are only urinals here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_type" }, { "key": "toilets:position", - "description": "Layer 'Indoors' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "squat" + "value": "squat", + "description": "toilets:position=squat is displayed as \"There are only squat toilets here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_type" }, { "key": "toilets:position", - "description": "Layer 'Indoors' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "seated;urinal" + "value": "seated;urinal", + "description": "toilets:position=seated;urinal is displayed as \"Both seated toilets and urinals are available here\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_type" }, { "key": "changing_table", - "description": "Layer 'Indoors' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "yes" + "value": "yes", + "description": "changing_table=yes is displayed as \"A changing table is available\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/baby.svg" }, { "key": "changing_table", - "description": "Layer 'Indoors' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)", - "value": "no" + "value": "no", + "description": "changing_table=no is displayed as \"No changing table is available\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilets_changing_table" }, { "key": "changing_table:location", - "description": "Layer 'Indoors' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & changing_table=yes)" + "description": "Values of `changing_table:location` are shown with \"A changing table is located at {changing_table:location}\" and can be updated. The question is \"Where is the changing table located?\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_changing_table_location" }, { "key": "changing_table:location", - "description": "Layer 'Indoors' shows changing_table:location=female_toilet with a fixed text, namely 'A changing table is in the toilet for women' 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": "female_toilet" + "value": "female_toilet", + "description": "changing_table:location=female_toilet is displayed as \"A changing table is in the toilet for women\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_changing_table_location" }, { "key": "changing_table:location", - "description": "Layer 'Indoors' shows changing_table:location=male_toilet with a fixed text, namely 'A changing table is in the toilet for men' 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": "male_toilet" + "value": "male_toilet", + "description": "changing_table:location=male_toilet is displayed as \"A changing table is in the toilet for men\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_changing_table_location" }, { "key": "changing_table:location", - "description": "Layer 'Indoors' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'A changing table is in the toilet for wheelchair users' 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": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "changing_table:location=wheelchair_toilet is displayed as \"A changing table is in the toilet for wheelchair users\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_changing_table_location" }, { "key": "changing_table:location", - "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 don't 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" + "value": "dedicated_room", + "description": "changing_table:location=dedicated_room is displayed as \"A changing table is in a dedicated room\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_changing_table_location" }, { "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)", - "value": "yes" + "value": "yes", + "description": "toilets:paper_supplied=yes is displayed as \"This toilet is equipped with toilet paper\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_has_paper" }, { "key": "toilets:paper_supplied", - "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" + "value": "no", + "description": "toilets:paper_supplied=no is displayed as \"You have to bring your own toilet paper to this toilet\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_has_paper" + }, + { + "key": "toilets:handwashing", + "value": "yes", + "description": "toilets:handwashing=yes is displayed as \"These toilets have a sink to wash your hands\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_handwashing" + }, + { + "key": "toilets:handwashing", + "value": "no", + "description": "toilets:handwashing=no is displayed as \"These toilets don't have a sink to wash your hands\" by layer Indoors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/indoors.md#toilet_handwashing" }, { "key": "highway", - "description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag", - "value": "footway" + "value": "footway", + "description": "Features with this tag are displayed by layer Pedestrian paths", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pedestrian_path.md", + "icon_url": "./assets/svg/bug.svg" }, { "key": "highway", - "description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag", - "value": "path" + "value": "path", + "description": "Features with this tag are displayed by layer Pedestrian paths", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pedestrian_path.md", + "icon_url": "./assets/svg/bug.svg" }, { "key": "highway", - "description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag", - "value": "corridor" + "value": "corridor", + "description": "Features with this tag are displayed by layer Pedestrian paths", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pedestrian_path.md", + "icon_url": "./assets/svg/bug.svg" }, { "key": "highway", - "description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag", - "value": "steps" + "value": "steps", + "description": "Features with this tag are displayed by layer Pedestrian paths", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pedestrian_path.md", + "icon_url": "./assets/svg/bug.svg" }, { "key": "highway", - "description": "The MapComplete theme Indoors has a layer Elevator showing features with this tag", - "value": "elevator" - }, - { - "key": "id", - "description": "Layer 'Elevator' 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 'Indoors') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "elevator", + "description": "Features with this tag are displayed by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "level", - "description": "Layer 'Elevator' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Indoors') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Elevator' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Indoors') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Elevator' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Elevator' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Elevator' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Elevator' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "-1" + "description": "Values of `level` are shown with \"This elevator goes to floors {level}\" and can be updated. The question is \"What levels does this elevator go to?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#multilevels", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=broken with a fixed text, namely 'This elevator is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This elevator is broken\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "close:red" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=closed with a fixed text, namely 'This elevator is closed e.g. because renovation works are going on' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This elevator is closed e.g. because renovation works are going on\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "invalid:red" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=ok with a fixed text, namely 'This elevator works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "ok" + "value": "ok", + "description": "operational_status=ok is displayed as \"This elevator works\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status= with a fixed text, namely 'This elevator works' (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= is displayed as \"This elevator works\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "door:width", - "description": "Layer 'Elevator' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Indoors')" + "description": "Values of `door:width` are shown with \"This elevator's doors have a width of {canonical(door:width)}\" and can be updated. The question is \"What is the width of this elevator's entrance?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#door_width", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "shape", - "description": "Layer 'Elevator' shows shape=rectangular with a fixed text, namely 'This elevator has a rectangular shape' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "rectangular" + "value": "rectangular", + "description": "shape=rectangular is displayed as \"This elevator has a rectangular shape\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_shape", + "icon_url": "./assets/svg/square.svg" }, { "key": "shape", - "description": "Layer 'Elevator' shows shape=circular with a fixed text, namely 'This elevator has a circular shape' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "circular" + "value": "circular", + "description": "shape=circular is displayed as \"This elevator has a circular shape\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_shape", + "icon_url": "./assets/svg/circle.svg" }, { "key": "width", - "description": "Layer 'Elevator' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'Indoors') (This is only shown if shape= | shape=rectangular)" + "description": "Values of `width` are shown with \"This elevator has a width of {canonical(width)}\" and can be updated. The question is \"What is the width of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_width", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "length", - "description": "Layer 'Elevator' shows and asks freeform values for key 'length' (in the mapcomplete.org theme 'Indoors') (This is only shown if shape= | shape=rectangular)" + "description": "Values of `length` are shown with \"This elevator has a depth of {canonical(length)}\" and can be updated. The question is \"What is the depth of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_depth", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "diameter", - "description": "Layer 'Elevator' shows and asks freeform values for key 'diameter' (in the mapcomplete.org theme 'Indoors') (This is only shown if shape=circular)" + "description": "Values of `diameter` are shown with \"This elevator has a diameter of {canonical(diameter)}\" and can be updated. The question is \"What is the diameter of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_diameter", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" + }, + { + "key": "handrail", + "value": "yes", + "description": "handrail=yes is displayed as \"This elevator has a handrail in the cabin\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#handrail", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" + }, + { + "key": "handrail", + "value": "no", + "description": "handrail=no is displayed as \"This elevator does not have a handrail\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#handrail", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "hearing_loop", - "description": "Layer 'Elevator' shows hearing_loop=yes with a fixed text, namely 'This place has an audio induction loop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "yes" + "value": "yes", + "description": "hearing_loop=yes is displayed as \"This place has an audio induction loop\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop.svg" }, { "key": "hearing_loop", - "description": "Layer 'Elevator' shows hearing_loop=no with a fixed text, namely 'This place does not have an audio induction loop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "no" + "value": "no", + "description": "hearing_loop=no is displayed as \"This place does not have an audio induction loop\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop_missing.svg" }, { "key": "tactile_writing:braille", - "description": "Layer 'Elevator' shows tactile_writing:braille=yes with a fixed text, namely 'This elevator has tactile writing in Braille' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "yes" + "value": "yes", + "description": "tactile_writing:braille=yes is displayed as \"This elevator has tactile writing in Braille\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#tactile_writing_available", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "tactile_writing:braille", - "description": "Layer 'Elevator' shows tactile_writing:braille=no with a fixed text, namely 'This elevator does not have tactile writing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "no" + "value": "no", + "description": "tactile_writing:braille=no is displayed as \"This elevator does not have tactile writing\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#tactile_writing_available", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "speech_output", - "description": "Layer 'Elevator' shows speech_output=yes with a fixed text, namely 'This elevator has speech output' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "yes" + "value": "yes", + "description": "speech_output=yes is displayed as \"This elevator has speech output\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#speech_output_available", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "speech_output", - "description": "Layer 'Elevator' shows speech_output=no with a fixed text, namely 'This elevator does not have speech output' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "no" + "value": "no", + "description": "speech_output=no is displayed as \"This elevator does not have speech output\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#speech_output_available", + "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, { "key": "entrance", - "description": "The MapComplete theme Indoors has a layer Entrance showing features with this tag" - }, - { - "key": "indoor", - "description": "The MapComplete theme Indoors has a layer Entrance showing features with this tag", - "value": "door" + "description": "Features with this tag are displayed by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "door", - "description": "The MapComplete theme Indoors has a layer Entrance showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Entrance' 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 'Indoors') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Entrance' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Indoors') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Entrance' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Indoors') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Entrance' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Entrance' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Entrance' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Entrance' 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 'Indoors') (This is only shown if repeat_on=)", - "value": "-1" + "description": "Features with this tag are displayed by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the mapcomplete.org theme 'Indoors')", - "value": "yes" + "value": "yes", + "description": "entrance=yes is displayed as \"No specific entrance type is known\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows entrance= & indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key entrance.", - "value": "" + "description": "entrance= & indoor=door is displayed as \"This is an indoor door, separating a room or a corridor within a single building\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows entrance= & indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "door" + "value": "door", + "description": "entrance= & indoor=door is displayed as \"This is an indoor door, separating a room or a corridor within a single building\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=main is displayed as \"This is the main entrance\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "main" + "value": "main", + "description": "indoor= & entrance=main is displayed as \"This is the main entrance\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=secondary is displayed as \"This is a secondary entrance\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "secondary" + "value": "secondary", + "description": "indoor= & entrance=secondary is displayed as \"This is a secondary entrance\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=service is displayed as \"This is a service entrance - normally only used for employees, delivery, …\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "service" + "value": "service", + "description": "indoor= & entrance=service is displayed as \"This is a service entrance - normally only used for employees, delivery, …\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=exit is displayed as \"This is an exit where one can not enter\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "exit" + "value": "exit", + "description": "indoor= & entrance=exit is displayed as \"This is an exit where one can not enter\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=entrance is displayed as \"This is an entrance where one can only enter (but not exit)\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "entrance" + "value": "entrance", + "description": "indoor= & entrance=entrance is displayed as \"This is an entrance where one can only enter (but not exit)\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=emergency is displayed as \"This is emergency exit\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "emergency" + "value": "emergency", + "description": "indoor= & entrance=emergency is displayed as \"This is emergency exit\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=home is displayed as \"This is the entrance to a private home\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "home" + "value": "home", + "description": "indoor= & entrance=home is displayed as \"This is the entrance to a private home\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the mapcomplete.org theme 'Indoors')", - "value": "yes" + "value": "yes", + "description": "door=yes is displayed as \"The door type is not known\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=hinged with a fixed text, namely 'A classical, hinged door supported by joints' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "hinged" + "value": "hinged", + "description": "door=hinged is displayed as \"A classical, hinged door supported by joints\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=revolving with a fixed text, namely 'A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "revolving" + "value": "revolving", + "description": "door=revolving is displayed as \"A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=sliding with a fixed text, namely 'A sliding door where the door slides sidewards, typically parallel with a wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "sliding" + "value": "sliding", + "description": "door=sliding is displayed as \"A sliding door where the door slides sidewards, typically parallel with a wall\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=overhead with a fixed text, namely 'A door which rolls from overhead, typically seen for garages' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "overhead" + "value": "overhead", + "description": "door=overhead is displayed as \"A door which rolls from overhead, typically seen for garages\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=no with a fixed text, namely 'This is an entrance without a physical door' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')", - "value": "no" + "value": "no", + "description": "door=no is displayed as \"This is an entrance without a physical door\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=yes with a fixed text, namely 'This is an automatic door' (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "yes" + "value": "yes", + "description": "automatic_door=yes is displayed as \"This is an automatic door\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=no with a fixed text, namely 'This door is not automated' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "no" + "value": "no", + "description": "automatic_door=no is displayed as \"This door is not automated\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=motion with a fixed text, namely 'This door will open automatically when motion is detected' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "motion" + "value": "motion", + "description": "automatic_door=motion is displayed as \"This door will open automatically when motion is detected\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=floor with a fixed text, namely 'This door will open automatically when a sensor in the floor is triggered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "floor" + "value": "floor", + "description": "automatic_door=floor is displayed as \"This door will open automatically when a sensor in the floor is triggered\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=button with a fixed text, namely 'This door will open automatically when a button is pressed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "button" + "value": "button", + "description": "automatic_door=button is displayed as \"This door will open automatically when a button is pressed\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=slowdown_button with a fixed text, namely 'This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "slowdown_button" + "value": "slowdown_button", + "description": "automatic_door=slowdown_button is displayed as \"This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=continuous with a fixed text, namely 'This door revolves automatically all the time' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "continuous" + "value": "continuous", + "description": "automatic_door=continuous is displayed as \"This door revolves automatically all the time\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=serviced_on_button_press with a fixed text, namely 'This door will be opened by staff when requested by pressing a button' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "serviced_on_button_press" + "value": "serviced_on_button_press", + "description": "automatic_door=serviced_on_button_press is displayed as \"This door will be opened by staff when requested by pressing a button\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=serviced_on_request with a fixed text, namely 'This door will be opened by staff when requested' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if door!=no)", - "value": "serviced_on_request" + "value": "serviced_on_request", + "description": "automatic_door=serviced_on_request is displayed as \"This door will be opened by staff when requested\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "width", - "description": "Layer 'Entrance' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'Indoors')" + "description": "Values of `width` are shown with \"This door has a width of {canonical(width)}\" and can be updated. The question is \"What is the width of this door/entrance?\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#width", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "key": "kerb:height", - "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the mapcomplete.org theme 'Indoors')" + "description": "Values of `kerb:height` are shown with \"The kerb height of this door is {kerb:height}\" and can be updated. The question is \"What is the height of this kerb?\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#kerb_height", + "icon_url": "./assets/layers/entrance/entrance.svg" }, { "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" + "value": "0", + "description": "kerb:height=0 is displayed as \"This door does not have a kerb\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#kerb_height", + "icon_url": "./assets/layers/entrance/entrance.svg" + }, + { + "key": "ref", + "description": "Values of `ref` are shown with \"This door has {ref} as reference number\" and can be updated. The question is \"Does this door have a reference number?\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#ref", + "icon_url": "./assets/layers/entrance/entrance.svg" + }, + { + "key": "ref", + "description": "ref= is displayed as \"No reference number\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#ref", + "icon_url": "./assets/layers/entrance/entrance.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_insects.json b/Docs/TagInfo/mapcomplete_insects.json index ede97e2aa8..dd893219b9 100644 --- a/Docs/TagInfo/mapcomplete_insects.json +++ b/Docs/TagInfo/mapcomplete_insects.json @@ -7,75 +7,71 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/insect_hotel/insect_hotel.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "man_made", - "description": "The MapComplete theme Insect Hotels has a layer Insect Hotels showing features with this tag", - "value": "insect_hotel" + "value": "insect_hotel", + "description": "Features with this tag are displayed by layer Insect Hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md", + "icon_url": "./assets/layers/insect_hotel/insect_hotel.svg" }, { "key": "id", - "description": "Layer 'Insect Hotels' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Insect Hotels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Insect Hotels, Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images", + "icon_url": "./assets/layers/insect_hotel/insect_hotel.svg" }, { "key": "panoramax", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images", + "icon_url": "./assets/layers/insect_hotel/insect_hotel.svg" }, { "key": "mapillary", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images", + "icon_url": "./assets/layers/insect_hotel/insect_hotel.svg" }, { "key": "wikidata", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images", + "icon_url": "./assets/layers/insect_hotel/insect_hotel.svg" }, { "key": "wikipedia", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images", + "icon_url": "./assets/layers/insect_hotel/insect_hotel.svg" }, { "key": "man_made", - "description": "The MapComplete theme Insect Hotels has a layer Beehives showing features with this tag", - "value": "beehive" - }, - { - "key": "id", - "description": "Layer 'Beehives' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Insect Hotels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "beehive", + "description": "Features with this tag are displayed by layer Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/beehive.md", + "icon_url": "./assets/layers/beehive/beehive.svg" }, { "key": "capacity", - "description": "Layer 'Beehives' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Insect Hotels')" + "description": "Values of `capacity` are shown with \"There are {capacity} beehives\" and can be updated. The question is \"How many beehives are there?\" by layer Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/beehive.md#capacity", + "icon_url": "./assets/layers/beehive/beehive.svg" }, { "key": "capacity", - "description": "Layer 'Beehives' shows capacity=1 with a fixed text, namely 'There is 1 beehive' and allows to pick this as a default answer (in the mapcomplete.org theme 'Insect Hotels')", - "value": "1" + "value": "1", + "description": "capacity=1 is displayed as \"There is 1 beehive\" by layer Beehives", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/beehive.md#capacity", + "icon_url": "./assets/layers/beehive/beehive.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json b/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json index d4c7975d1b..454e14207c 100644 --- a/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json +++ b/Docs/TagInfo/mapcomplete_kerbs_and_crossings.json @@ -7,1089 +7,1429 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/kerbs/KerbIcon.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "cycleway" + "value": "cycleway", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "lane" + "value": "lane", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "shared_lane" + "value": "shared_lane", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "track" + "value": "track", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "residential" + "value": "residential", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "tertiary" + "value": "tertiary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "unclassified" + "value": "unclassified", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "primary" + "value": "primary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "secondary" + "value": "secondary", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "tertiary_link" + "value": "tertiary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "primary_link" + "value": "primary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "secondary_link" + "value": "secondary_link", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "service" + "value": "service", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "footway" + "value": "footway", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "pedestrian" + "value": "pedestrian", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "living_street" + "value": "living_street", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "path" + "value": "path", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle", - "description": "The MapComplete theme Kerbs and crossings has a layer Cycleways and roads showing features with this tag", - "value": "designated" + "value": "designated", + "description": "Features with this tag are displayed by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "id", - "description": "Layer 'Cycleways and roads' 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 'Kerbs and crossings') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Cycleways and roads, Crossings, Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "panoramax", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "mapillary", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "wikidata", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "wikipedia", - "description": "The layer 'Cycleways and roads allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cycleways and roads, Crossings, Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#images", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=shared_lane with a fixed text, namely 'There is a shared lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "shared_lane" + "value": "shared_lane", + "description": "cycleway=shared_lane is displayed as \"There is a shared lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=lane with a fixed text, namely 'There is a lane next to the road (separated with paint)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "lane" + "value": "lane", + "description": "cycleway=lane is displayed as \"There is a lane next to the road (separated with paint)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=track with a fixed text, namely 'There is a track, but no cycleway drawn separately from this road on the map.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "track" + "value": "track", + "description": "cycleway=track is displayed as \"There is a track, but no cycleway drawn separately from this road on the map.\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=separate with a fixed text, namely 'There is a separately drawn cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "separate" + "value": "separate", + "description": "cycleway=separate is displayed as \"There is a separately drawn cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "no" - }, - { - "key": "cycleway", - "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "no" + "value": "no", + "description": "cycleway=no is displayed as \"There is no cycleway\" by layers Cycleways and roads, Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_type_for_a_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This street is lit\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=no with a fixed text, namely 'This road is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "no" + "value": "no", + "description": "lit=no is displayed as \"This road is not lit\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=sunset-sunrise with a fixed text, namely 'This road is lit at night' (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "sunset-sunrise" + "value": "sunset-sunrise", + "description": "lit=sunset-sunrise is displayed as \"This road is lit at night\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "lit", - "description": "Layer 'Cycleways and roads' shows lit=24/7 with a fixed text, namely 'This road is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "24/7" + "value": "24/7", + "description": "lit=24/7 is displayed as \"This road is lit 24/7\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_lit_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "30" + "value": "30", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "overtaking:motor_vehicle", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "no" + "value": "no", + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road=yes is displayed as \"This street is a bicycle road\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key proposed:bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "30" + "value": "30", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "source:maxspeed", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "DE:bicycle_road" + "value": "DE:bicycle_road", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "vehicle", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "no" + "value": "no", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle", - "description": "Layer 'Cycleways and roads' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "designated" + "value": "designated", + "description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "yes" + "value": "yes", + "description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key proposed:cyclestreet. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "bicycle_road", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "proposed:bicycle_road", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key proposed:bicycle_road. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "overtaking:motor_vehicle", - "description": "Layer 'Cycleways and roads' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key overtaking:motor_vehicle. (This is only shown if highway!=cycleway & highway!=path & highway!=footway)", - "value": "" + "description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#is_cyclestreet_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1020-30" + "value": "DE:244.1,1020-30", + "description": "traffic_sign=DE:244.1,1020-30 is displayed as \"Residents allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1020-30.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12,1024-10" + "value": "DE:244.1,1022-12,1024-10", + "description": "traffic_sign=DE:244.1,1022-12,1024-10 is displayed as \"Motor vehicles allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_KFZ_frei.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1022-12" + "value": "DE:244.1,1022-12", + "description": "traffic_sign=DE:244.1,1022-12 is displayed as \"Motorcycles allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1022-12.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1,1024-10" + "value": "DE:244.1,1024-10", + "description": "traffic_sign=DE:244.1,1024-10 is displayed as \"Cars allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244_1024-10.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if bicycle_road=yes & _country=de)", - "value": "DE:244.1" + "value": "DE:244.1", + "description": "traffic_sign=DE:244.1 is displayed as \"There are no supplementary signs at this bicycle road.\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#supplementary_sign", + "icon_url": "./assets/themes/cyclestreets/Zeichen_244.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)" + "description": "Values of `maxspeed` are shown with \"The maximum speed on this road is {maxspeed} km/h\" and can be updated. The question is \"What is the maximum speed in this street?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=20 with a fixed text, namely 'The maximum speed is 20 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "20" + "value": "20", + "description": "maxspeed=20 is displayed as \"The maximum speed is 20 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=30 with a fixed text, namely 'The maximum speed is 30 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "30" + "value": "30", + "description": "maxspeed=30 is displayed as \"The maximum speed is 30 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=50 with a fixed text, namely 'The maximum speed is 50 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "50" + "value": "50", + "description": "maxspeed=50 is displayed as \"The maximum speed is 50 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=70 with a fixed text, namely 'The maximum speed is 70 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "70" + "value": "70", + "description": "maxspeed=70 is displayed as \"The maximum speed is 70 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "maxspeed", - "description": "Layer 'Cycleways and roads' shows maxspeed=90 with a fixed text, namely 'The maximum speed is 90 km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway & highway!=pedestrian)", - "value": "90" + "value": "90", + "description": "maxspeed=90 is displayed as \"The maximum speed is 90 km/h\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Maxspeed__for_road_", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:surface' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)" + "description": "Values of `cycleway:surface` are shown with \"This cyleway is made of {cycleway:surface}\" and can be updated. The question is \"What is the surface of the cycleway made from?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=unpaved with a fixed text, namely 'This cycleway is unpaved' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "unpaved" + "value": "unpaved", + "description": "cycleway:surface=unpaved is displayed as \"This cycleway is unpaved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=paved with a fixed text, namely 'This cycleway is paved' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "paved" + "value": "paved", + "description": "cycleway:surface=paved is displayed as \"This cycleway is paved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "asphalt" + "value": "asphalt", + "description": "cycleway:surface=asphalt is displayed as \"This cycleway is made of asphalt\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "paving_stones" + "value": "paving_stones", + "description": "cycleway:surface=paving_stones is displayed as \"This cycleway is made of smooth paving stones\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "concrete" + "value": "concrete", + "description": "cycleway:surface=concrete is displayed as \"This cycleway is made of concrete\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "cobblestone" + "value": "cobblestone", + "description": "cycleway:surface=cobblestone is displayed as \"This cycleway is made of cobblestone (unhewn or sett)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "unhewn_cobblestone" + "value": "unhewn_cobblestone", + "description": "cycleway:surface=unhewn_cobblestone is displayed as \"This cycleway is made of raw, natural cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "sett" + "value": "sett", + "description": "cycleway:surface=sett is displayed as \"This cycleway is made of flat, square cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "wood" + "value": "wood", + "description": "cycleway:surface=wood is displayed as \"This cycleway is made of wood\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "gravel" + "value": "gravel", + "description": "cycleway:surface=gravel is displayed as \"This cycleway is made of gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "cycleway:surface=fine_gravel is displayed as \"This cycleway is made of fine gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "pebblestone" + "value": "pebblestone", + "description": "cycleway:surface=pebblestone is displayed as \"This cycleway is made of pebblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:surface", - "description": "Layer 'Cycleways and roads' shows cycleway:surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "ground" + "value": "ground", + "description": "cycleway:surface=ground is displayed as \"This cycleway is made from raw ground\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_surface", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'incline' (in the mapcomplete.org theme 'Kerbs and crossings')" + "description": "Values of `incline` are shown with \"This road has an slope of {incline}\" and can be updated. The question is \"Does {title()} have an incline?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline= with a fixed text, namely 'There is (probably) no incline here' (in the mapcomplete.org theme 'Kerbs and crossings') Picking this answer will delete the key incline.", - "value": "" + "description": "incline= is displayed as \"There is (probably) no incline here\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "up" + "value": "up", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "down" + "value": "down", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "incline", - "description": "Layer 'Cycleways and roads' shows incline=up | incline=down | incline=yes with a fixed text, namely 'This road has a slope' (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "yes" + "value": "yes", + "description": "incline=up | incline=down | incline=yes is displayed as \"This road has a slope\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#incline", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "excellent" + "value": "excellent", + "description": "cycleway:smoothness=excellent is displayed as \"Usable for thin rollers: rollerblade, skateboard\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "good" + "value": "good", + "description": "cycleway:smoothness=good is displayed as \"Usable for thin wheels: racing bike\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "intermediate" + "value": "intermediate", + "description": "cycleway:smoothness=intermediate is displayed as \"Usable for normal wheels: city bike, wheelchair, scooter\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "bad" + "value": "bad", + "description": "cycleway:smoothness=bad is displayed as \"Usable for robust wheels: trekking bike, car, rickshaw\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "very_bad" + "value": "very_bad", + "description": "cycleway:smoothness=very_bad is displayed as \"Usable for vehicles with high clearance: light duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "horrible" + "value": "horrible", + "description": "cycleway:smoothness=horrible is displayed as \"Usable for off-road vehicles: heavy duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "very_horrible" + "value": "very_horrible", + "description": "cycleway:smoothness=very_horrible is displayed as \"Usable for specialized off-road vehicles: tractor, ATV\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:smoothness", - "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=shared_lane | cycleway=lane | cycleway=track)", - "value": "impassable" + "value": "impassable", + "description": "cycleway:smoothness=impassable is displayed as \"Impassable / No wheeled vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Cycleway_smoothness", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'Kerbs and crossings')" + "description": "Values of `surface` are shown with \"This road is made of {surface}\" and can be updated. The question is \"What is the surface of the street made from?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=unpaved with a fixed text, namely 'This cycleway is unhardened' (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "unpaved" + "value": "unpaved", + "description": "surface=unpaved is displayed as \"This cycleway is unhardened\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=paved with a fixed text, namely 'This cycleway is paved' (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "paved" + "value": "paved", + "description": "surface=paved is displayed as \"This cycleway is paved\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "asphalt" + "value": "asphalt", + "description": "surface=asphalt is displayed as \"This cycleway is made of asphalt\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "paving_stones" + "value": "paving_stones", + "description": "surface=paving_stones is displayed as \"This cycleway is made of smooth paving stones\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "concrete" + "value": "concrete", + "description": "surface=concrete is displayed as \"This cycleway is made of concrete\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "cobblestone" + "value": "cobblestone", + "description": "surface=cobblestone is displayed as \"This cycleway is made of cobblestone (unhewn or sett)\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "unhewn_cobblestone" + "value": "unhewn_cobblestone", + "description": "surface=unhewn_cobblestone is displayed as \"This cycleway is made of raw, natural cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "sett" + "value": "sett", + "description": "surface=sett is displayed as \"This cycleway is made of flat, square cobblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "wood" + "value": "wood", + "description": "surface=wood is displayed as \"This cycleway is made of wood\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "gravel" + "value": "gravel", + "description": "surface=gravel is displayed as \"This cycleway is made of gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "surface=fine_gravel is displayed as \"This cycleway is made of fine gravel\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "pebblestone" + "value": "pebblestone", + "description": "surface=pebblestone is displayed as \"This cycleway is made of pebblestone\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "surface", - "description": "Layer 'Cycleways and roads' shows surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "ground" + "value": "ground", + "description": "surface=ground is displayed as \"This cycleway is made from raw ground\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_road", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=no | highway=cycleway)", - "value": "excellent" + "value": "excellent", + "description": "smoothness=excellent is displayed as \"Usable for thin rollers: rollerblade, skateboard\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=no | highway=cycleway)", - "value": "good" + "value": "good", + "description": "smoothness=good is displayed as \"Usable for thin wheels: racing bike\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=no | highway=cycleway)", - "value": "intermediate" + "value": "intermediate", + "description": "smoothness=intermediate is displayed as \"Usable for normal wheels: city bike, wheelchair, scooter\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=no | highway=cycleway)", - "value": "bad" + "value": "bad", + "description": "smoothness=bad is displayed as \"Usable for robust wheels: trekking bike, car, rickshaw\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=no | highway=cycleway)", - "value": "very_bad" + "value": "very_bad", + "description": "smoothness=very_bad is displayed as \"Usable for vehicles with high clearance: light duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=no | highway=cycleway)", - "value": "horrible" + "value": "horrible", + "description": "smoothness=horrible is displayed as \"Usable for off-road vehicles: heavy duty off-road vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=no | highway=cycleway)", - "value": "very_horrible" + "value": "very_horrible", + "description": "smoothness=very_horrible is displayed as \"Usable for specialized off-road vehicles: tractor, ATV\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "smoothness", - "description": "Layer 'Cycleways and roads' shows smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=no | highway=cycleway)", - "value": "impassable" + "value": "impassable", + "description": "smoothness=impassable is displayed as \"Impassable / No wheeled vehicle\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#Surface_of_the_street", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "width", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway!=cycleway & highway!=path & highway!=footway)" + "description": "Values of `width` are shown with \"The carriage width of this road is {width}m\" and can be updated. The question is \"What is the carriage width of this road (in meters)?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#width", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D7" + "value": "BE:D7", + "description": "cycleway:traffic_sign=BE:D7 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign~^(BE:D7;.*)$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))" + "description": "cycleway:traffic_sign~^(BE:D7;.*)$ is displayed as \"Compulsory cycleway (with supplementary sign)
\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D9" + "value": "BE:D9", + "description": "cycleway:traffic_sign=BE:D9 is displayed as \"Segregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D09.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "BE:D10" + "value": "BE:D10", + "description": "cycleway:traffic_sign=BE:D10 is displayed as \"Unsegregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D10.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (cycleway=lane | cycleway=track) & (_country=be))", - "value": "none" + "value": "none", + "description": "cycleway:traffic_sign=none is displayed as \"No traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_lane_track_traffic_signs", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D7" + "value": "BE:D7", + "description": "traffic_sign=BE:D7 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign~^(BE:D7;.*)$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))" + "description": "traffic_sign~^(BE:D7;.*)$ is displayed as \"Compulsory cycleway (with supplementary sign)
\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D07.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D9" + "value": "BE:D9", + "description": "traffic_sign=BE:D9 is displayed as \"Segregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D09.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "BE:D10" + "value": "BE:D10", + "description": "traffic_sign=BE:D10 is displayed as \"Unsegregated foot/cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_road_sign_D10.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G11 with a fixed text, namely 'Compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G11" + "value": "NL:G11", + "description": "traffic_sign=NL:G11 is displayed as \"Compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G11.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G12a with a fixed text, namely 'Compulsory (moped)cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G12a" + "value": "NL:G12a", + "description": "traffic_sign=NL:G12a is displayed as \"Compulsory (moped)cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G12a.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=NL:G13 with a fixed text, namely 'Non-compulsory cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "NL:G13" + "value": "NL:G13", + "description": "traffic_sign=NL:G13 is displayed as \"Non-compulsory cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/nl/Nederlands_verkeersbord_G13.svg" }, { "key": "traffic_sign", - "description": "Layer 'Cycleways and roads' shows traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if (highway=cycleway | highway=path) & (_country=be | _country=nl))", - "value": "none" + "value": "none", + "description": "traffic_sign=none is displayed as \"No traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M6 with a fixed text, namely 'Mopeds must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M6" + "value": "BE:D7;BE:M6", + "description": "cycleway:traffic_sign=BE:D7;BE:M6 is displayed as \"Mopeds must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M6.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M13 with a fixed text, namely 'Speedpedelecs must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M13" + "value": "BE:D7;BE:M13", + "description": "cycleway:traffic_sign=BE:D7;BE:M13 is displayed as \"Speedpedelecs must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M13.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M14 with a fixed text, namely 'Mopeds and speedpedelecs must use the cycleway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M14" + "value": "BE:D7;BE:M14", + "description": "cycleway:traffic_sign=BE:D7;BE:M14 is displayed as \"Mopeds and speedpedelecs must use the cycleway\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M14.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M7 with a fixed text, namely 'Mopeds are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M7" + "value": "BE:D7;BE:M7", + "description": "cycleway:traffic_sign=BE:D7;BE:M7 is displayed as \"Mopeds are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M7.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M15 with a fixed text, namely 'Speedpedelecs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M15" + "value": "BE:D7;BE:M15", + "description": "cycleway:traffic_sign=BE:D7;BE:M15 is displayed as \"Speedpedelecs are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M15.svg" }, { "key": "cycleway:traffic_sign", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M16 with a fixed text, namely 'Mopeds and speedpedelecs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "BE:D7;BE:M16" + "value": "BE:D7;BE:M16", + "description": "cycleway:traffic_sign=BE:D7;BE:M16 is displayed as \"Mopeds and speedpedelecs are not allowed\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/layers/cycleways_and_roads/traffic_sign/be/Belgian_traffic_sign_M16.svg" }, { "key": "cycleway:traffic_sign:supplementary", - "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign:supplementary=none with a fixed text, namely 'No supplementary traffic sign present' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway:traffic_sign=BE:D7 | cycleway:traffic_sign~^(BE:D7;.*)$)", - "value": "none" + "value": "none", + "description": "cycleway:traffic_sign:supplementary=none is displayed as \"No supplementary traffic sign present\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_traffic_signs_supplementary", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:buffer", - "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:buffer' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=track | cycleway=lane)" + "description": "Values of `cycleway:buffer` are shown with \"The buffer besides this cycleway is {cycleway:buffer} m\" and can be updated. The question is \"How wide is the gap between the cycleway and the road?\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleways_and_roads_cycleway_buffer", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=track | cycleway=lane)", - "value": "dashed_line" + "value": "dashed_line", + "description": "cycleway:separation=dashed_line is displayed as \"This cycleway is separated by a dashed line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=track | cycleway=lane)", - "value": "solid_line" + "value": "solid_line", + "description": "cycleway:separation=solid_line is displayed as \"This cycleway is separated by a solid line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=track | cycleway=lane)", - "value": "parking_lane" + "value": "parking_lane", + "description": "cycleway:separation=parking_lane is displayed as \"This cycleway is separated by a parking lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "cycleway:separation", - "description": "Layer 'Cycleways and roads' shows cycleway:separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if cycleway=track | cycleway=lane)", - "value": "kerb" + "value": "kerb", + "description": "cycleway:separation=kerb is displayed as \"This cycleway is separated by a kerb\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cyclelan_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=cycleway | highway=path)", - "value": "dashed_line" + "value": "dashed_line", + "description": "separation=dashed_line is displayed as \"This cycleway is separated by a dashed line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=cycleway | highway=path)", - "value": "solid_line" + "value": "solid_line", + "description": "separation=solid_line is displayed as \"This cycleway is separated by a solid line\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=cycleway | highway=path)", - "value": "parking_lane" + "value": "parking_lane", + "description": "separation=parking_lane is displayed as \"This cycleway is separated by a parking lane\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "separation", - "description": "Layer 'Cycleways and roads' shows separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=cycleway | highway=path)", - "value": "kerb" + "value": "kerb", + "description": "separation=kerb is displayed as \"This cycleway is separated by a kerb\" by layer Cycleways and roads", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cycleways_and_roads.md#cycleway_segregation", + "icon_url": "./assets/themes/cycle_infra/bicycleway.svg" }, { "key": "highway", - "description": "The MapComplete theme Kerbs and crossings has a layer Crossings showing features with this tag", - "value": "crossing" + "value": "crossing", + "description": "Features with this tag are displayed by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { - "key": "id", - "description": "Layer 'Crossings' 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 'Kerbs and crossings') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "key": "crossing:signals", + "value": "no", + "description": "crossing:signals=no is displayed as \"There are no traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#signals", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { - "key": "image", - "description": "The layer 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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 'Crossings allows to upload images and adds them under the 'panoramax'-tag (and 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": "crossing:signals", + "value": "yes", + "description": "crossing:signals=yes is displayed as \"There are traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#signals", + "icon_url": "./assets/layers/crossings/traffic_lights.svg" }, { "key": "crossing", - "description": "Layer 'Crossings' shows crossing=uncontrolled with a fixed text, namely 'Crossing, without traffic lights' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "uncontrolled" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=traffic_signals with a fixed text, namely 'Crossing with traffic signals' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "traffic_signals" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "zebra" - }, - { - "key": "crossing", - "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "unmarked" + "value": "traffic_signals", + "description": "crossing=traffic_signals is displayed as \"There are traffic signals at this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#signals", + "icon_url": "./assets/layers/crossings/traffic_lights.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows and asks freeform values for key 'crossing:markings' (in the mapcomplete.org theme 'Kerbs and crossings')" + "description": "Values of `crossing:markings` are shown with \"This crossing has {crossing:markings} markings\" and can be updated. The question is \"What kind of markings does this crossing have?\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=no with a fixed text, namely 'This crossing has no markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "no" + "value": "no", + "description": "crossing:markings=no is displayed as \"This crossing has no markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/crossing_unmarked.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra with a fixed text, namely 'This crossing has zebra markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "zebra" + "value": "zebra", + "description": "crossing:markings=zebra is displayed as \"This crossing has zebra markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=yes with a fixed text, namely 'This crossing has markings of an unknown type' (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "yes" + "value": "yes", + "description": "crossing:markings=yes is displayed as \"This crossing has markings of an unknown type\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=lines with a fixed text, namely 'This crossings has lines on either side of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "lines" + "value": "lines", + "description": "crossing:markings=lines is displayed as \"This crossings has lines on either side of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_lines.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder with a fixed text, namely 'This crossing has lines on either side of the crossing, along with bars connecting them' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "ladder" + "value": "ladder", + "description": "crossing:markings=ladder is displayed as \"This crossing has lines on either side of the crossing, along with bars connecting them\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_ladder.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=dashes with a fixed text, namely 'This crossing has dashed lines on either sides of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "dashes" + "value": "dashes", + "description": "crossing:markings=dashes is displayed as \"This crossing has dashed lines on either sides of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_dashes.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=dots with a fixed text, namely 'This crossing has dotted lines on either sides of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "dots" + "value": "dots", + "description": "crossing:markings=dots is displayed as \"This crossing has dotted lines on either sides of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_dots.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=surface with a fixed text, namely 'This crossing is marked by using a different coloured surface' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "surface" + "value": "surface", + "description": "crossing:markings=surface is displayed as \"This crossing is marked by using a different coloured surface\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_surface.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder:skewed with a fixed text, namely 'This crossing has lines on either side of the crossing, along with angled bars connecting them' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "ladder:skewed" + "value": "ladder:skewed", + "description": "crossing:markings=ladder:skewed is displayed as \"This crossing has lines on either side of the crossing, along with angled bars connecting them\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_ladder_skewed.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:paired with a fixed text, namely 'This crossing has zebra markings with an interruption in every bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "zebra:paired" + "value": "zebra:paired", + "description": "crossing:markings=zebra:paired is displayed as \"This crossing has zebra markings with an interruption in every bar\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:bicolour with a fixed text, namely 'This crossing has zebra markings in alternating colours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "zebra:bicolour" + "value": "zebra:bicolour", + "description": "crossing:markings=zebra:bicolour is displayed as \"This crossing has zebra markings in alternating colours\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra_bicolour.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=zebra:double with a fixed text, namely 'This crossing has double zebra markings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "zebra:double" + "value": "zebra:double", + "description": "crossing:markings=zebra:double is displayed as \"This crossing has double zebra markings\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_zebra_double.png" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=pictograms with a fixed text, namely 'This crossing has pictograms on the road' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "pictograms" + "value": "pictograms", + "description": "crossing:markings=pictograms is displayed as \"This crossing has pictograms on the road\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=ladder:paired with a fixed text, namely 'This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "ladder:paired" + "value": "ladder:paired", + "description": "crossing:markings=ladder:paired is displayed as \"This crossing has lines on either side of the crossing, along with bars connecting them, with an interruption in every bar\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:markings", - "description": "Layer 'Crossings' shows crossing:markings=lines:paired with a fixed text, namely 'This crossing has double lines on either side of the crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "lines:paired" + "value": "lines:paired", + "description": "crossing:markings=lines:paired is displayed as \"This crossing has double lines on either side of the crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#markings", + "icon_url": "./assets/layers/crossings/markings_lines_paired.png" }, { "key": "bicycle", - "description": "Layer 'Crossings' shows bicycle=yes with a fixed text, namely 'A cyclist can use this crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"A cyclist can use this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_bicycle_allowed", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "bicycle", - "description": "Layer 'Crossings' shows bicycle=no with a fixed text, namely 'A cyclist can not use this crossing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "no" + "value": "no", + "description": "bicycle=no is displayed as \"A cyclist can not use this crossing\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_bicycle_allowed", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:island", - "description": "Layer 'Crossings' shows crossing:island=yes with a fixed text, namely 'This crossing has an island in the middle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "yes" + "value": "yes", + "description": "crossing:island=yes is displayed as \"This crossing has an island in the middle\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_has_island", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "crossing:island", - "description": "Layer 'Crossings' shows crossing:island=no with a fixed text, namely 'This crossing does not have an island in the middle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "no" + "value": "no", + "description": "crossing:island=no is displayed as \"This crossing does not have an island in the middle\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_has_island", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=yes with a fixed text, namely 'This crossing has tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "yes" + "value": "yes", + "description": "tactile_paving=yes is displayed as \"This crossing has tactile paving\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=no with a fixed text, namely 'This crossing does not have tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "no" + "value": "no", + "description": "tactile_paving=no is displayed as \"This crossing does not have tactile paving\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "tactile_paving", - "description": "Layer 'Crossings' shows tactile_paving=incorrect with a fixed text, namely 'This crossing has tactile paving, but is not correct' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=crossing)", - "value": "incorrect" + "value": "incorrect", + "description": "tactile_paving=incorrect is displayed as \"This crossing has tactile paving, but is not correct\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" + }, + { + "key": "tactile_paving", + "value": "partial", + "description": "tactile_paving=partial is displayed as \"This crrosing has tactile paving, but only on one side\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_tactile", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "button_operated", - "description": "Layer 'Crossings' shows button_operated=yes with a fixed text, namely 'This traffic light has a button to request green light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals | crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "button_operated=yes is displayed as \"This traffic light has a button to request green light\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_button", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "button_operated", - "description": "Layer 'Crossings' shows button_operated=no with a fixed text, namely 'This traffic light does not have a button to request green light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals | crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "button_operated=no is displayed as \"This traffic light does not have a button to request green light\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_button", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=yes with a fixed text, namely 'This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:sound=yes is displayed as \"This traffic light has sound signals to help crossing, both for finding the crossing and for crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=no with a fixed text, namely 'This traffic light does not have sound signals to help crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:sound=no is displayed as \"This traffic light does not have sound signals to help crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=locate with a fixed text, namely 'This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals)", - "value": "locate" + "value": "locate", + "description": "traffic_signals:sound=locate is displayed as \"This traffic light has a sound signal to help locate the pole, but no signal to sign that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:sound", - "description": "Layer 'Crossings' shows traffic_signals:sound=walk with a fixed text, namely 'This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals)", - "value": "walk" + "value": "walk", + "description": "traffic_signals:sound=walk is displayed as \"This traffic light has a sound signal to sign that it is safe to cross, but no signal to help locate the pole.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_sound", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:vibration", - "description": "Layer 'Crossings' shows traffic_signals:vibration=yes with a fixed text, namely 'The button for this traffic light has a vibration signal to indicate that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals & button_operated=yes)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:vibration=yes is displayed as \"The button for this traffic light has a vibration signal to indicate that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_vibration", + "icon_url": "./assets/layers/crossings/Vibrating_button_illustration.jpg" }, { "key": "traffic_signals:vibration", - "description": "Layer 'Crossings' shows traffic_signals:vibration=no with a fixed text, namely 'The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals & button_operated=yes)", - "value": "no" + "value": "no", + "description": "traffic_signals:vibration=no is displayed as \"The button for this traffic light does not have a vibration signal to indicate that it is safe to cross.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_vibration", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:arrow", - "description": "Layer 'Crossings' shows traffic_signals:arrow=yes with a fixed text, namely 'This traffic light has an arrow pointing in the direction of crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:arrow=yes is displayed as \"This traffic light has an arrow pointing in the direction of crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_arrow", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:arrow", - "description": "Layer 'Crossings' shows traffic_signals:arrow=no with a fixed text, namely 'This traffic light does not have an arrow pointing in the direction of crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:arrow=no is displayed as \"This traffic light does not have an arrow pointing in the direction of crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_arrow", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "traffic_signals:minimap", - "description": "Layer 'Crossings' shows traffic_signals:minimap=yes with a fixed text, namely 'This traffic light has a tactile map showing the layout of the crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "traffic_signals:minimap=yes is displayed as \"This traffic light has a tactile map showing the layout of the crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_minimap", + "icon_url": "./assets/layers/crossings/180px-Trairvoja_mapeto.jpg" }, { "key": "traffic_signals:minimap", - "description": "Layer 'Crossings' shows traffic_signals:minimap=no with a fixed text, namely 'This traffic light does not have a tactile map showing the layout of the crossing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if crossing=traffic_signals)", - "value": "no" + "value": "no", + "description": "traffic_signals:minimap=no is displayed as \"This traffic light does not have a tactile map showing the layout of the crossing.\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_minimap", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "red_turn:right:bicycle=yes is displayed as \"A cyclist can turn right if the light is red\" by layers Crossings, Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_right_turn_through_red", + "icon_url": "./assets/layers/crossings/Belgian_road_sign_B22.svg" }, { "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)", - "value": "yes" - }, - { - "key": "red_turn:right:bicycle", - "description": "Layer 'Crossings' shows red_turn:right:bicycle=no with a fixed text, namely 'A cyclist can not turn right if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)", - "value": "no" + "value": "no", + "description": "red_turn:right:bicycle=no is displayed as \"A cyclist can not turn right if the light is red\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_right_turn_through_red", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)", - "value": "yes" + "value": "yes", + "description": "red_turn:straight:bicycle=yes is displayed as \"A cyclist can go straight on if the light is red\" by layers Crossings, Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_continue_through_red", + "icon_url": "./assets/layers/crossings/Belgian_road_sign_B23.svg" }, { "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)", - "value": "yes" - }, - { - "key": "red_turn:straight:bicycle", - "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if highway=traffic_signals)", - "value": "no" + "value": "no", + "description": "red_turn:straight:bicycle=no is displayed as \"A cyclist can not go straight on if the light is red\" by layer Crossings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/crossings_no_traffic_lights.md#crossing_continue_through_red", + "icon_url": "./assets/layers/crossings/pedestrian_crossing.svg" }, { "key": "barrier", - "description": "The MapComplete theme Kerbs and crossings has a layer Kerbs showing features with this tag", - "value": "kerb" - }, - { - "key": "id", - "description": "Layer 'Kerbs' 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 'Kerbs and crossings') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "kerb", + "description": "Features with this tag are displayed by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=raised with a fixed text, namely 'This kerb is raised (>3 cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "raised" + "value": "raised", + "description": "kerb=raised is displayed as \"This kerb is raised (>3 cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/raised.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=lowered with a fixed text, namely 'This kerb is lowered (~3 cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "lowered" + "value": "lowered", + "description": "kerb=lowered is displayed as \"This kerb is lowered (~3 cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/lowered.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=flush with a fixed text, namely 'This kerb is flush (~0cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "flush" + "value": "flush", + "description": "kerb=flush is displayed as \"This kerb is flush (~0cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/flush.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=no with a fixed text, namely 'There is no kerb here' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "no" + "value": "no", + "description": "kerb=no is displayed as \"There is no kerb here\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/no.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=yes with a fixed text, namely 'There is a kerb of unknown height' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "yes" + "value": "yes", + "description": "kerb=yes is displayed as \"There is a kerb of unknown height\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=yes with a fixed text, namely 'This kerb has tactile paving.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "yes" + "value": "yes", + "description": "tactile_paving=yes is displayed as \"This kerb has tactile paving.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=no with a fixed text, namely 'This kerb does not have tactile paving.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "no" + "value": "no", + "description": "tactile_paving=no is displayed as \"This kerb does not have tactile paving.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=contrasted with a fixed text, namely 'This kerb has tactile paving, which has a contrasting colour to the surrounding pavement.' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "contrasted" + "value": "contrasted", + "description": "tactile_paving=contrasted is displayed as \"This kerb has tactile paving, which has a contrasting colour to the surrounding pavement.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=incorrect with a fixed text, namely 'This kerb has tactile paving, but it is incorrect.' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if _geometry:type=Point)", - "value": "incorrect" + "value": "incorrect", + "description": "tactile_paving=incorrect is displayed as \"This kerb has tactile paving, but it is incorrect.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows and asks freeform values for key 'tactile_paving:colour' (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if tactile_paving!=no & _geometry:type=Point)" + "description": "Values of `tactile_paving:colour` are shown with \"The tactile paving is coloured {tactile_paving:colour}.\" and can be updated. The question is \"What is the colour of the tactile paving?\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=yellow with a fixed text, namely 'The tactile paving is yellow.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "yellow" + "value": "yellow", + "description": "tactile_paving:colour=yellow is displayed as \"The tactile paving is yellow.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=red with a fixed text, namely 'The tactile paving is red.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "red" + "value": "red", + "description": "tactile_paving:colour=red is displayed as \"The tactile paving is red.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=white with a fixed text, namely 'The tactile paving is white.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "white" + "value": "white", + "description": "tactile_paving:colour=white is displayed as \"The tactile paving is white.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=grey with a fixed text, namely 'The tactile paving is grey.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "grey" + "value": "grey", + "description": "tactile_paving:colour=grey is displayed as \"The tactile paving is grey.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "kerb:height", - "description": "Layer 'Kerbs' shows and asks freeform values for key 'kerb:height' (in the mapcomplete.org theme 'Kerbs and crossings')" + "description": "Values of `kerb:height` are shown with \"Kerb height: {kerb:height}\" and can be updated. The question is \"What is the height of this kerb?\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_height", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" }, { "key": "kerb:height", - "description": "Layer 'Kerbs' shows kerb:height=0 with a fixed text, namely 'This kerb is flush and is lower than 1cm.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Kerbs and crossings')", - "value": "0" + "value": "0", + "description": "kerb:height=0 is displayed as \"This kerb is flush and is lower than 1cm.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_height", + "icon_url": "./assets/layers/kerbs/KerbIcon.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_lactosefree.json b/Docs/TagInfo/mapcomplete_lactosefree.json index a33094c644..9b83c946e3 100644 --- a/Docs/TagInfo/mapcomplete_lactosefree.json +++ b/Docs/TagInfo/mapcomplete_lactosefree.json @@ -7,2305 +7,2636 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/questions/lactose_free.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Restaurants and fast food showing features with this tag", - "value": "fast_food" + "value": "fast_food", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Restaurants and fast food showing features with this tag", - "value": "restaurant" + "value": "restaurant", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Restaurants and fast food showing features with this tag" + "description": "Features with this tag are displayed by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Restaurants and fast food, Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "id", - "description": "Layer 'Restaurants and fast food' 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 'Lactose free shops and restaurants') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "name", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `name` are shown with \"The name of this business is {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Name", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "fast_food" + "value": "fast_food", + "description": "amenity=fast_food is displayed as \"This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "restaurant" + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant, focused on creating a nice experience where one is served at the table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Restaurants and fast food' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Restaurants and fast food' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Restaurants and fast food' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Restaurants and fast food' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "payment:cash", - "description": "Layer 'Restaurants and fast food' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Restaurants and fast food' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "location", - "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Lactose free shops and restaurants') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Lactose free shops and restaurants') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Lactose free shops and restaurants') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Lactose free shops and restaurants') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layers Restaurants and fast food, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `cuisine` are shown with \"This place mostly serves {cuisine}\" and can be updated. The question is \"What kind of food is served here?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'Pizzeria' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "pizza" + "value": "pizza", + "description": "cuisine=pizza is displayed as \"Pizzeria\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'Friture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "friture" + "value": "friture", + "description": "cuisine=friture is displayed as \"Friture\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Serves mainly pasta' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "pasta" + "value": "pasta", + "description": "cuisine=pasta is displayed as \"Serves mainly pasta\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'Kebab shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "kebab" + "value": "kebab", + "description": "cuisine=kebab is displayed as \"Kebab shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'Sandwich shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "sandwich" + "value": "sandwich", + "description": "cuisine=sandwich is displayed as \"Sandwich shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgersrestaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "burger" + "value": "burger", + "description": "cuisine=burger is displayed as \"Burgersrestaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "sushi" + "value": "sushi", + "description": "cuisine=sushi is displayed as \"Sushi restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffeebar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "coffee" + "value": "coffee", + "description": "cuisine=coffee is displayed as \"Coffeebar\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'Italian restaurant (which serves more than pasta and pizza)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "italian" + "value": "italian", + "description": "cuisine=italian is displayed as \"Italian restaurant (which serves more than pasta and pizza)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "french" + "value": "french", + "description": "cuisine=french is displayed as \"French restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "chinese" + "value": "chinese", + "description": "cuisine=chinese is displayed as \"Chinese\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "greek" + "value": "greek", + "description": "cuisine=greek is displayed as \"Greek\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "indian" + "value": "indian", + "description": "cuisine=indian is displayed as \"Indian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "turkish" + "value": "turkish", + "description": "cuisine=turkish is displayed as \"Turkish restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "thai" + "value": "thai", + "description": "cuisine=thai is displayed as \"Thai restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=mexican with a fixed text, namely 'Mexican dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "mexican " + "value": "mexican ", + "description": "cuisine=mexican is displayed as \"Mexican dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=japanese with a fixed text, namely 'Japanese dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "japanese " + "value": "japanese ", + "description": "cuisine=japanese is displayed as \"Japanese dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chicken with a fixed text, namely 'Chicken based dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "chicken " + "value": "chicken ", + "description": "cuisine=chicken is displayed as \"Chicken based dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=seafood with a fixed text, namely 'Seafood dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "seafood " + "value": "seafood ", + "description": "cuisine=seafood is displayed as \"Seafood dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "image", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website:menu", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website:menu' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `website:menu` are shown with \"{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage is the menu published?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#menu_website", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=required with a fixed text, namely 'A reservation is required at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if takeaway!=only)", - "value": "required" + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=recommended with a fixed text, namely 'A reservation is not required, but still recommended to make sure you get a table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if takeaway!=only)", - "value": "recommended" + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=yes with a fixed text, namely 'Reservation is possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if takeaway!=only)", - "value": "yes" + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=no with a fixed text, namely 'Reservation is not possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if takeaway!=only)", - "value": "no" + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" + "value": "only", + "description": "takeaway=only is displayed as \"This is a take-away only business\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "takeaway=yes is displayed as \"Take-away is possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "takeaway=no is displayed as \"Take-away is not possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (possibly via a third party)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "delivery=yes is displayed as \"This business does home delivery (possibly via a third party)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "delivery=no is displayed as \"This business does not deliver at home\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=yes with a fixed text, namely 'This fast-food restaurant has a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if amenity=fast_food)", - "value": "yes" + "value": "yes", + "description": "drive_through=yes is displayed as \"This fast-food restaurant has a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=no with a fixed text, namely 'This fast-food restaurant does not have a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if amenity=fast_food)", - "value": "no" + "value": "no", + "description": "drive_through=no is displayed as \"This fast-food restaurant does not have a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours:drive_through' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if drive_through=yes)" + "description": "Values of `opening_hours:drive_through` are shown with \"

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}\" and can be updated. The question is \"What are the opening hours of the drive-through?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows opening_hours:drive_through= with a fixed text, namely 'The opening hours of the drive-through are the same as the restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') Picking this answer will delete the key opening_hours:drive_through. (This is only shown if drive_through=yes)", - "value": "" + "description": "opening_hours:drive_through= is displayed as \"The opening hours of the drive-through are the same as the restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg;cross_bottom_right:red" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Some vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"All dishes are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegetarian version, but this should be demanded' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegetarian=on_demand is displayed as \"Some dishes might be adapted to a vegetarian version, but this should be demanded\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"Some vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"All dishes are vegan\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegan version if asked for' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegan=on_demand is displayed as \"Some dishes might be adapted to a vegan version if asked for\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:halal=no is displayed as \"There are no halal options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:halal=limited is displayed as \"There is a small halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:halal=yes is displayed as \"There is a halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:halal=only is displayed as \"Only halal options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'There are no organic options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"There are no organic options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'There is an organic menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"There is an organic menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'Serves only vegetarian snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"Serves only vegetarian snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Only a small selection of snacks are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'Serves only vegan snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"Serves only vegan snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"A small selection of vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'Organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"Organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'No organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"No organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "vegetable" + "value": "vegetable", + "description": "friture:oil=vegetable is displayed as \"The frying is done with vegetable oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "animal" + "value": "animal", + "description": "friture:oil=animal is displayed as \"The frying is done with animal oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "reusable_packaging:accept=yes is displayed as \"You can bring your own containers to get your order, saving on single-use packaging material and thus waste\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "reusable_packaging:accept=no is displayed as \"Bringing your own container is not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "reusable_packaging:accept=only is displayed as \"You must bring your own container to order here.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layers Restaurants and fast food, Ice cream parlors, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if _country!~^(al|be)$)", - "value": "yes" + "value": "yes", + "description": "smoking=yes is displayed as \"Smoking is allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#smoking", + "icon_url": "./assets/layers/questions/smoking.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if _country!~^(al|be)$)", - "value": "no" + "value": "no", + "description": "smoking=no is displayed as \"Smoking is not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#smoking", + "icon_url": "./assets/layers/questions/no_smoking.svg" }, { "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "outside", + "description": "smoking=outside is displayed as \"Smoking is allowed outside.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#smoking", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" + "value": "limited", + "description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "ask" + "value": "ask", + "description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "outdoor_seating", - "description": "Layer 'Restaurants and fast food' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#seating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "indoor_seating", - "description": "Layer 'Restaurants and fast food' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#seating", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Ice cream parlors showing features with this tag", - "value": "ice_cream" - }, - { - "key": "diet:lactose_free", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Ice cream parlors showing features with this tag" - }, - { - "key": "image", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" - }, - { - "key": "id", - "description": "Layer 'Ice cream parlors' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "ice_cream", + "description": "Features with this tag are displayed by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_lactosefree.md", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "name", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "contact:phone", - "description": "Layer 'Ice cream parlors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "email", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "contact:email", - "description": "Layer 'Ice cream parlors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "operator:email", - "description": "Layer 'Ice cream parlors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "website", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "contact:website", - "description": "Layer 'Ice cream parlors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "description": "Values of `name` are shown with \"This ice cream parlor is named {name}\" and can be updated. The question is \"What is the name of this ice cream parlor?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_lactosefree.md#1", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=only with a fixed text, namely 'This place only sells vegan products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"This place only sells vegan products\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_lactosefree.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=yes with a fixed text, namely 'This shop has a big vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"This shop has a big vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_lactosefree.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=limited with a fixed text, namely 'This shop has a limited vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"This shop has a limited vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_lactosefree.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=no with a fixed text, namely 'This shop has no vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" - }, - { - "key": "payment:cash", - "description": "Layer 'Ice cream parlors' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Ice cream parlors' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Ice cream parlors' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"This shop has no vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/icecream_lactosefree.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "shop", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Shop showing features with this tag" + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Shop showing features with this tag", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Shop showing features with this tag", - "value": "key_cutter" - }, - { - "key": "diet:lactose_free", - "description": "The MapComplete theme Lactose free shops and restaurants has a layer Shop showing features with this tag" - }, - { - "key": "image", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" - }, - { - "key": "id", - "description": "Layer 'Shop' 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 'Lactose free shops and restaurants') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "key_cutter", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "contact:website", - "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "email", - "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "contact:email", - "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "operator:email", - "description": "Layer 'Shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "contact:phone", - "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" - }, - { - "key": "payment:cash", - "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "level", - "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Lactose free shops and restaurants') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Lactose free shops and restaurants') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Lactose free shops and restaurants') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Lactose free shops and restaurants') (This is only shown if repeat_on=)", - "value": "-1" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Lactose free shops and restaurants') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "unleashed" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Lactose free shops and restaurants')", - "value": "outside" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "description", - "description": "Layer 'Shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Lactose free shops and restaurants')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#description", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_lighthouses.json b/Docs/TagInfo/mapcomplete_lighthouses.json index a9f05beb7f..40051ab822 100644 --- a/Docs/TagInfo/mapcomplete_lighthouses.json +++ b/Docs/TagInfo/mapcomplete_lighthouses.json @@ -7,54 +7,75 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/lighthouses/lighthouse.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "man_made", - "description": "The MapComplete theme Lighthouses has a layer lighthouse showing features with this tag", - "value": "lighthouse" + "value": "lighthouse", + "description": "Features with this tag are displayed by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "id", - "description": "Layer 'lighthouse' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Lighthouses') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "panoramax", - "description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "mapillary", - "description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "wikidata", - "description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "wikipedia", - "description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "wikidata", - "description": "Layer 'lighthouse' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Lighthouses')" + "description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#wikipedia", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "wikipedia", - "description": "Layer 'lighthouse' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Lighthouses')" + "description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#wikipedia", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "wikidata", - "description": "Layer 'lighthouse' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Lighthouses') Picking this answer will delete the key wikidata.", - "value": "" + "description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#wikipedia", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" }, { "key": "height", - "description": "Layer 'lighthouse' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Lighthouses')" + "description": "Values of `height` are shown with \"The height of this lighthouse is {height} metres.\" and can be updated. The question is \"What is the height of this lighthouse, in metres?\" by layer lighthouse", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#lighthouse_height", + "icon_url": "./assets/themes/lighthouses/lighthouse.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_maps.json b/Docs/TagInfo/mapcomplete_maps.json index d9f599d9d3..95de072e1b 100644 --- a/Docs/TagInfo/mapcomplete_maps.json +++ b/Docs/TagInfo/mapcomplete_maps.json @@ -7,252 +7,275 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/maps/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "tourism", - "description": "The MapComplete theme A map of maps has a layer Maps showing features with this tag", - "value": "map" + "value": "map", + "description": "Features with this tag are displayed by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "information", - "description": "The MapComplete theme A map of maps has a layer Maps showing features with this tag", - "value": "map" + "value": "map", + "description": "Features with this tag are displayed by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "id", - "description": "Layer 'Maps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'A map of maps') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Maps, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "panoramax", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "mapillary", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "wikidata", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "wikipedia", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_type", - "description": "Layer 'Maps' shows map_type=topo with a fixed text, namely 'Topographical map

The map contains contour lines.

' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "topo" + "value": "topo", + "description": "map_type=topo is displayed as \"Topographical map

The map contains contour lines.

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_type", - "description": "Layer 'Maps' shows map_type=street with a fixed text, namely 'A map with all streets or ways of an area.

The streets are mostly named; the angles, distances etc. are accurate

' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "street" + "value": "street", + "description": "map_type=street is displayed as \"A map with all streets or ways of an area.

The streets are mostly named; the angles, distances etc. are accurate

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_type", - "description": "Layer 'Maps' shows map_type=scheme with a fixed text, namely 'This is a schematic map.

A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.

' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "scheme" + "value": "scheme", + "description": "map_type=scheme is displayed as \"This is a schematic map.

A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_type", - "description": "Layer 'Maps' shows map_type=toposcope with a fixed text, namely 'This is a toposcope.

A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point

' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "toposcope" + "value": "toposcope", + "description": "map_type=toposcope is displayed as \"This is a toposcope.

A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=building with a fixed text, namely 'A map of the rooms within a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "building" + "value": "building", + "description": "map_size=building is displayed as \"A map of the rooms within a building\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=site with a fixed text, namely 'A map of special site, like of a historical castle, a park, a campus, a forest, ....' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "site" + "value": "site", + "description": "map_size=site is displayed as \"A map of special site, like of a historical castle, a park, a campus, a forest, ....\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=village with a fixed text, namely 'A map showing the village or town' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "village" + "value": "village", + "description": "map_size=village is displayed as \"A map showing the village or town\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=city with a fixed text, namely 'A map of a city' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "city" + "value": "city", + "description": "map_size=city is displayed as \"A map of a city\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=region with a fixed text, namely 'The map of an entire region, showing multiple cities and villages' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "region" + "value": "region", + "description": "map_size=region is displayed as \"The map of an entire region, showing multiple cities and villages\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source", - "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the mapcomplete.org theme 'A map of maps')" + "description": "Values of `map_source` are shown with \"This map is based on {map_source}\" and can be updated. The question is \"On which data is this map based?\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap & not:map_source= with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "OpenStreetMap" + "value": "OpenStreetMap", + "description": "map_source=OpenStreetMap & not:map_source= is displayed as \"This map is based on OpenStreetMap\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "not:map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap & not:map_source= with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') Picking this answer will delete the key not:map_source.", - "value": "" + "description": "map_source=OpenStreetMap & not:map_source= is displayed as \"This map is based on OpenStreetMap\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=yes with a fixed text, namely 'OpenStreetMap is clearly attributed, including the ODBL-license' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "yes" + "value": "yes", + "description": "map_source:attribution=yes is displayed as \"OpenStreetMap is clearly attributed, including the ODBL-license\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=incomplete with a fixed text, namely 'OpenStreetMap is clearly attributed, but the license is not mentioned' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "incomplete" + "value": "incomplete", + "description": "map_source:attribution=incomplete is displayed as \"OpenStreetMap is clearly attributed, but the license is not mentioned\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=sticker with a fixed text, namely 'OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "sticker" + "value": "sticker", + "description": "map_source:attribution=sticker is displayed as \"OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=none with a fixed text, namely 'There is no attribution at all' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "none" + "value": "none", + "description": "map_source:attribution=none is displayed as \"There is no attribution at all\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "no" + "value": "no", + "description": "map_source:attribution=no is displayed as \"There is no attribution at all\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "information", - "description": "The MapComplete theme A map of maps has a layer Tactile Maps showing features with this tag", - "value": "tactile_map" - }, - { - "key": "id", - "description": "Layer 'Tactile Maps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'A map of maps') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "tactile_map", + "description": "Features with this tag are displayed by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "blind:description:en", - "description": "Layer 'Tactile Maps' shows and asks freeform values for key 'blind:description:en' (in the mapcomplete.org theme 'A map of maps')" + "description": "Values of `blind:description:en` are shown with \"Description: {blind:description:en}.\" and can be updated. The question is \"What does this tactile map show?\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#description", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "braille", - "description": "Layer 'Tactile Maps' shows braille=yes with a fixed text, namely 'This tactile map has braille text.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "yes" + "value": "yes", + "description": "braille=yes is displayed as \"This tactile map has braille text.\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#braille", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "braille", - "description": "Layer 'Tactile Maps' shows braille=no with a fixed text, namely 'This tactile map does not have braille text.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "no" + "value": "no", + "description": "braille=no is displayed as \"This tactile map does not have braille text.\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#braille", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "embossed_letters", - "description": "Layer 'Tactile Maps' shows embossed_letters=yes with a fixed text, namely 'This tactile map has embossed letters.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "yes" + "value": "yes", + "description": "embossed_letters=yes is displayed as \"This tactile map has embossed letters.\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#embossed_letters", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "embossed_letters", - "description": "Layer 'Tactile Maps' shows embossed_letters=no with a fixed text, namely 'This tactile map does not have embossed letters.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "no" + "value": "no", + "description": "embossed_letters=no is displayed as \"This tactile map does not have embossed letters.\" by layer Tactile Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#embossed_letters", + "icon_url": "./assets/themes/maps/logo.svg" }, { "key": "website", - "description": "Layer 'Tactile Maps' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'A map of maps')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Tactile Maps' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'A map of maps')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Tactile Maps, Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "information", - "description": "The MapComplete theme A map of maps has a layer Tactile Models showing features with this tag", - "value": "tactile_model" - }, - { - "key": "id", - "description": "Layer 'Tactile Models' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'A map of maps') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "tactile_model", + "description": "Features with this tag are displayed by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "blind:description:en", - "description": "Layer 'Tactile Models' shows and asks freeform values for key 'blind:description:en' (in the mapcomplete.org theme 'A map of maps')" + "description": "Values of `blind:description:en` are shown with \"Description: {blind:description:en}.\" and can be updated. The question is \"What does this tactile model show?\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#description", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "braille", - "description": "Layer 'Tactile Models' shows braille=yes with a fixed text, namely 'There is a braille description.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "yes" + "value": "yes", + "description": "braille=yes is displayed as \"There is a braille description.\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#braille", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "braille", - "description": "Layer 'Tactile Models' shows braille=no with a fixed text, namely 'There is no braille description.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "no" + "value": "no", + "description": "braille=no is displayed as \"There is no braille description.\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#braille", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "embossed_letters", - "description": "Layer 'Tactile Models' shows embossed_letters=yes with a fixed text, namely 'There are embossed letters describing the model.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "yes" + "value": "yes", + "description": "embossed_letters=yes is displayed as \"There are embossed letters describing the model.\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#embossed_letters", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "embossed_letters", - "description": "Layer 'Tactile Models' shows embossed_letters=no with a fixed text, namely 'There are no embossed letters describing the model.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')", - "value": "no" + "value": "no", + "description": "embossed_letters=no is displayed as \"There are no embossed letters describing the model.\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#embossed_letters", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" }, { "key": "scale", - "description": "Layer 'Tactile Models' shows and asks freeform values for key 'scale' (in the mapcomplete.org theme 'A map of maps')" - }, - { - "key": "website", - "description": "Layer 'Tactile Models' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'A map of maps')" - }, - { - "key": "contact:website", - "description": "Layer 'Tactile Models' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'A map of maps')" + "description": "Values of `scale` are shown with \"The scale of this model is {scale}.\" and can be updated. The question is \"What scale is the model?\" by layer Tactile Models", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#scale", + "icon_url": "./assets/layers/tactile_model/tactile_model.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_maxspeed.json b/Docs/TagInfo/mapcomplete_maxspeed.json index dd1f50be65..ea319617b0 100644 --- a/Docs/TagInfo/mapcomplete_maxspeed.json +++ b/Docs/TagInfo/mapcomplete_maxspeed.json @@ -7,145 +7,172 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/maxspeed/maxspeed_logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "residential" + "value": "residential", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "living_street" + "value": "living_street", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "motorway" + "value": "motorway", + "description": "Features with this tag are displayed by layers Maxspeed, Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "tertiary" + "value": "tertiary", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "unclassified" + "value": "unclassified", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "secondary" + "value": "secondary", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "primary" + "value": "primary", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "trunk" + "value": "trunk", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "motorway" + "value": "tertiary_link", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "tertiary_link" + "value": "secondary_link", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "secondary_link" + "value": "primary_link", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "primary_link" + "value": "trunk_link", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "trunk_link" - }, - { - "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag", - "value": "motorway_link" + "value": "motorway_link", + "description": "Features with this tag are displayed by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md" }, { "key": "id", - "description": "Layer 'Maxspeed' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Maxspeed') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Maxspeed, Speed Camera, Speed Display", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "maxspeed", - "description": "Layer 'Maxspeed' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Maxspeed')" + "description": "Values of `maxspeed` are shown with \"The maximum allowed speed on this road is {canonical(maxspeed)}\" and can be updated. The question is \"What is the legal maximum speed one is allowed to drive on this road?\" by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md#maxspeed_maxspeed" }, { "key": "highway", - "description": "Layer 'Maxspeed' shows highway=living_street & _country=be with a fixed text, namely 'This is a living street, which has a maxspeed of 20km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Maxspeed')", - "value": "living_street" + "value": "living_street", + "description": "highway=living_street & _country=be is displayed as \"This is a living street, which has a maxspeed of 20km/h\" by layer Maxspeed", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md#maxspeed_maxspeed", + "icon_url": "./assets/layers/maxspeed/living_street_be.svg" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Speed Camera showing features with this tag", - "value": "speed_camera" - }, - { - "key": "id", - "description": "Layer 'Speed Camera' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Maxspeed') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "speed_camera", + "description": "Features with this tag are displayed by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "image", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "panoramax", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "mapillary", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "wikidata", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "wikipedia", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "maxspeed", - "description": "Layer 'Speed Camera' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Maxspeed')" + "description": "Values of `maxspeed` are shown with \"The maximum speed allowed is {canonical(maxspeed)}\" and can be updated. The question is \"What is the maximum speed allowed at this speed camera?\" by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#maxspeed", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "direction", - "description": "Layer 'Speed Camera' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Maxspeed')" + "description": "Values of `direction` are shown with \"Films to a compass heading of {direction}\" and can be updated. The question is \"In which geographical direction does this camera film?\" by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#camera_direction", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "highway", - "description": "The MapComplete theme Maxspeed has a layer Speed Display showing features with this tag", - "value": "speed_display" - }, - { - "key": "id", - "description": "Layer 'Speed Display' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Maxspeed') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "speed_display", + "description": "Features with this tag are displayed by layer Speed Display", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_display.md", + "icon_url": "./assets/layers/speed_display/speed_display.svg" }, { "key": "maxspeed", - "description": "Layer 'Speed Display' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Maxspeed')" + "description": "Values of `maxspeed` are shown with \"The maximum speed allowed at this speed display is {canonical(maxspeed)}\" and can be updated. The question is \"What is the maximum speed allowed at this speed display?\" by layer Speed Display", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_display.md#maxspeed", + "icon_url": "./assets/layers/speed_display/speed_display.svg" }, { "key": "inscription", - "description": "Layer 'Speed Display' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Maxspeed')" + "description": "Values of `inscription` are shown with \"The text on this speed display is {inscription}\" and can be updated. The question is \"What is the text on this speed display?\" by layer Speed Display", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_display.md#inscription", + "icon_url": "./assets/layers/speed_display/speed_display.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_memorials.json b/Docs/TagInfo/mapcomplete_memorials.json index bfdf7f45db..69a9fc5ad7 100644 --- a/Docs/TagInfo/mapcomplete_memorials.json +++ b/Docs/TagInfo/mapcomplete_memorials.json @@ -7,1073 +7,928 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/memorial/memorial.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "memorial", - "description": "The MapComplete theme Memorials has a layer Ghost bikes showing features with this tag", - "value": "ghost_bike" + "value": "ghost_bike", + "description": "Features with this tag are displayed by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "id", - "description": "Layer 'Ghost bikes' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Memorials') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Ghost bikes, Memorials, Gravestones, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost bikes, Memorials, Gravestones, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "panoramax", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost bikes, Memorials, Gravestones, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "mapillary", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost bikes, Memorials, Gravestones, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "wikidata", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost bikes, Memorials, Gravestones, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "wikipedia", - "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ghost bikes, Memorials, Gravestones, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "subject", - "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'subject' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `subject` are shown with \"In remembrance of {subject}\" and can be updated. The question is \"Whom is remembered by this ghost bike?\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "name", - "description": "Layer 'Ghost bikes' shows name~.+ with a fixed text, namely 'In remembrance of {name}' (in the mapcomplete.org theme 'Memorials')" + "description": "name~.+ is displayed as \"In remembrance of {name}\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "noname", - "description": "Layer 'Ghost bikes' shows noname=yes with a fixed text, namely 'No name is marked on the bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "yes" + "value": "yes", + "description": "noname=yes is displayed as \"No name is marked on the bike\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "source", - "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'source' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `source` are shown with \"{link(More info available,&LBRACEsource&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage can one find more info about the ghost bike or the accident?\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_source", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "inscription", - "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `inscription` are shown with \"{inscription}\" and can be updated. The question is \"What is the inscription on this Ghost bike?\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_inscription", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "start_date", - "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `start_date` are shown with \"Placed on {start_date}\" and can be updated. The question is \"When was this Ghost bike installed?\" by layer Ghost bikes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_start_date", + "icon_url": "./assets/layers/ghost_bike/ghost_bike.svg" }, { "key": "memorial", - "description": "The MapComplete theme Memorials has a layer Memorials showing features with this tag" + "description": "Features with this tag are displayed by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "historic", - "description": "The MapComplete theme Memorials has a layer Memorials showing features with this tag", - "value": "memorial" - }, - { - "key": "id", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and 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 'Memorials allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "memorial", + "description": "Features with this tag are displayed by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' shows and asks freeform values for key 'memorial' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `memorial` are shown with \"This is a {memorial}\" and can be updated. The question is \"What type of memorial is this?\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "statue" + "value": "statue", + "description": "memorial=statue is displayed as \"This is a statue\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "plaque" + "value": "plaque", + "description": "memorial=plaque is displayed as \"This is a plaque\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "bench" + "value": "bench", + "description": "memorial=bench is displayed as \"This is a commemorative bench\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "ghost_bike" + "value": "ghost_bike", + "description": "memorial=ghost_bike is displayed as \"This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "stolperstein" + "value": "stolperstein", + "description": "memorial=stolperstein is displayed as \"This is a stolperstein (stumbing stone)\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "stele" + "value": "stele", + "description": "memorial=stele is displayed as \"This is a stele\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "stone" + "value": "stone", + "description": "memorial=stone is displayed as \"This is a memorial stone\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "bust" + "value": "bust", + "description": "memorial=bust is displayed as \"This is a bust\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "sculpture" + "value": "sculpture", + "description": "memorial=sculpture is displayed as \"This is a sculpture\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "obelisk" + "value": "obelisk", + "description": "memorial=obelisk is displayed as \"This is an obelisk\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "cross" + "value": "cross", + "description": "memorial=cross is displayed as \"This is a cross\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "blue_plaque" + "value": "blue_plaque", + "description": "memorial=blue_plaque is displayed as \"This is a blue plaque\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "tank" + "value": "tank", + "description": "memorial=tank is displayed as \"This is a historic tank, permanently placed in public space as memorial\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "memorial", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "tree" + "value": "tree", + "description": "memorial=tree is displayed as \"This is a memorial tree\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "historic", - "description": "Layer 'Memorials' 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 'Memorials')", - "value": "tomb" + "value": "tomb", + "description": "historic=tomb is displayed as \"This is a gravestone; the person is buried here\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_type", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "inscription", - "description": "Layer 'Memorials' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Memorials') (This is only shown if memorial!=bench)" + "description": "Values of `inscription` are shown with \"The inscription on this memorial reads:

{inscription}

\" and can be updated. The question is \"What is the inscription on this memorial?\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#inscription", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "not:inscription", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if memorial!=bench)", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This memorial does not have an inscription\" by layers Memorials, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#inscription", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "wikidata", - "description": "Layer 'Memorials' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `wikidata` are shown with \"

Wikipedia page about the memorial

{wikipedia(wikidata)}\" and can be updated. The question is \"What is the Wikipedia page about this memorial?\" by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#memorial_wikidata", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Memorials' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `subject:wikidata` are shown with \"

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What is the Wikipedia page about the person or event that is remembered here?\" by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#subject_wikidata", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "start_date", - "description": "Layer 'Memorials' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `start_date` are shown with \"Placed on {start_date}\" and can be updated. The question is \"When was this memorial installed?\" by layer Memorials", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#start_date", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "backrest", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "two_sided", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "backrest", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "backrest=yes is displayed as \"This bench does have a backrest\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_backrest", + "icon_url": "./assets/layers/bench/one_sided.svg" }, { "key": "backrest", - "description": "Layer 'Memorials' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "backrest=no is displayed as \"This bench does not have a backrest\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_backrest", + "icon_url": "./assets/layers/bench/no_backrest.svg" }, { "key": "armrest", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_armrest", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "armrest", - "description": "Layer 'Memorials' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "armrest=no is displayed as \"This bench does not have any armrests\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_armrest", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "seats", - "description": "Layer 'Memorials' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)" + "description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_seats", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "seats:separated", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "no" + "value": "no", + "description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_seats", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "material", - "description": "Layer 'Memorials' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)" + "description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_material", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "material", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"The seating is made from wood\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_material", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "material", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"The seating is made from metal\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_material", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "material", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "stone" + "value": "stone", + "description": "material=stone is displayed as \"The seating is made from stone\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_material", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "material", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"The seating is made from concrete\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_material", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "material", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"The seating is made from plastic\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_material", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "material", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "steel" + "value": "steel", + "description": "material=steel is displayed as \"The seating is made from steel\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_material", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "direction", - "description": "Layer 'Memorials' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench & two_sided!=yes)" + "description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_direction", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)" + "description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "brown" + "value": "brown", + "description": "colour=brown is displayed as \"Colour: brown\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "green" + "value": "green", + "description": "colour=green is displayed as \"Colour: green\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "gray" + "value": "gray", + "description": "colour=gray is displayed as \"Colour: gray\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "white" + "value": "white", + "description": "colour=white is displayed as \"Colour: white\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "red" + "value": "red", + "description": "colour=red is displayed as \"Colour: red\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "black" + "value": "black", + "description": "colour=black is displayed as \"Colour: black\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "blue" + "value": "blue", + "description": "colour=blue is displayed as \"Colour: blue\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "colour", - "description": "Layer 'Memorials' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)", - "value": "yellow" + "value": "yellow", + "description": "colour=yellow is displayed as \"Colour: yellow\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_colour", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "survey:date", - "description": "Layer 'Memorials' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)" + "description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_survey_date", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "survey:date", - "description": "Layer 'Memorials' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key survey:date. (This is only shown if amenity=bench)", - "value": "" + "description": "survey:date= is displayed as \"Surveyed today!\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_survey_date", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "inscription", - "description": "Layer 'Memorials' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Memorials') (This is only shown if amenity=bench)" + "description": "Values of `inscription` are shown with \"This bench has the following inscription:

{inscription}

\" and can be updated. The question is \"Does this bench have an inscription?\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_inscription", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "not:inscription", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench)", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_inscription", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "inscription", - "description": "Layer 'Memorials' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key inscription. (This is only shown if amenity=bench)", - "value": "" + "description": "inscription= is displayed as \"This bench probably does not not have an inscription\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_inscription", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "historic", - "description": "Layer 'Memorials' 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 'Memorials') (This is only shown if amenity=bench & (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_memorial", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "historic", - "description": "Layer 'Memorials' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key historic. (This is only shown if amenity=bench & (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "" + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_memorial", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "not:historic", - "description": "Layer 'Memorials' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not 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 amenity=bench & (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" + "value": "memorial", + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layers Memorials, Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/memorial.md#bench_memorial", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "historic", - "description": "The MapComplete theme Memorials has a layer Gravestones showing features with this tag", - "value": "tomb" - }, - { - "key": "id", - "description": "Layer 'Gravestones' 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 'Memorials') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Gravestones allows to upload images and adds them under the 'panoramax'-tag (and 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 'Gravestones allows to upload images and adds them under the 'panoramax'-tag (and 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 'Gravestones allows to upload images and adds them under the 'panoramax'-tag (and 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 'Gravestones allows to upload images and adds them under the 'panoramax'-tag (and 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 'Gravestones allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "tomb", + "description": "Features with this tag are displayed by layer Gravestones", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/grave.md", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "buried:wikidata", - "description": "Layer 'Gravestones' shows and asks freeform values for key 'buried:wikidata' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `buried:wikidata` are shown with \"{wikipedia(buried:wikidata)}\" and can be updated. The question is \"What is the Wikipedia page of the person buried here?\" by layer Gravestones", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/grave.md#buried_wikidata", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "name", - "description": "Layer 'Gravestones' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Memorials')" + "description": "Values of `name` are shown with \"{name} is buried here\" and can be updated. The question is \"What is the name of the person buried here?\" by layer Gravestones", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/grave.md#name", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "amenity", - "description": "The MapComplete theme Memorials has a layer Benches showing features with this tag", - "value": "bench" - }, - { - "key": "id", - "description": "Layer 'Benches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Memorials') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "yes" - }, - { - "key": "two_sided", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "yes" - }, - { - "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'This bench does have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "yes" - }, - { - "key": "backrest", - "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "no" - }, - { - "key": "armrest", - "description": "Layer 'Benches' shows armrest=yes with a fixed text, namely 'This bench does have one or more armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "yes" - }, - { - "key": "armrest", - "description": "Layer 'Benches' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "no" - }, - { - "key": "seats", - "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Memorials')" - }, - { - "key": "seats:separated", - "description": "Layer 'Benches' shows seats:separated=no with a fixed text, namely 'This bench does not have separated seats' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "no" - }, - { - "key": "material", - "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Memorials')" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=wood with a fixed text, namely 'The seating is made from wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "wood" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=metal with a fixed text, namely 'The seating is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "metal" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=stone with a fixed text, namely 'The seating is made from stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "stone" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=concrete with a fixed text, namely 'The seating is made from concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "concrete" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=plastic with a fixed text, namely 'The seating is made from plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "plastic" - }, - { - "key": "material", - "description": "Layer 'Benches' shows material=steel with a fixed text, namely 'The seating is made from steel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "steel" - }, - { - "key": "direction", - "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Memorials') (This is only shown if two_sided!=yes)" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Memorials')" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "brown" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "green" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "gray" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "white" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "red" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "black" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "blue" - }, - { - "key": "colour", - "description": "Layer 'Benches' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "yellow" - }, - { - "key": "survey:date", - "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Memorials')" - }, - { - "key": "survey:date", - "description": "Layer 'Benches' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key survey:date.", - "value": "" - }, - { - "key": "inscription", - "description": "Layer 'Benches' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Memorials')" - }, - { - "key": "not:inscription", - "description": "Layer 'Benches' shows not:inscription=yes with a fixed text, namely 'This bench does not have an inscription' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "yes" - }, - { - "key": "inscription", - "description": "Layer 'Benches' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key inscription.", - "value": "" + "value": "bench", + "description": "Features with this tag are displayed by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism=artwork with a fixed text, namely 'This bench has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This bench has an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Benches' shows not:tourism:artwork=yes with a fixed text, namely 'This bench does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This bench does not have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism= with a fixed text, namely 'This bench probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key tourism.", - "value": "" - }, - { - "key": "historic", - "description": "Layer 'Benches' shows historic=memorial with a fixed text, namely 'This bench is a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" - }, - { - "key": "historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "" - }, - { - "key": "not:historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not 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))", - "value": "memorial" + "description": "tourism= is displayed as \"This bench probably doesn't have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artist_wikidata", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artist_name", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artist_name", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "website", - "description": "Layer 'Benches' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_website", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Memorials') (This is only shown if tourism=artwork)" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layers Benches, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_subject", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "The MapComplete theme Memorials 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 'Memorials') (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" + "value": "artwork", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "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" + "description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "wikipedia", - "description": "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 'Memorials')" - }, - { - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "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 'Memorials')", - "value": "woodcarving" - }, - { - "key": "artist:wikidata", - "description": "Layer 'Artworks' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Memorials')" - }, - { - "key": "artist_name", - "description": "Layer 'Artworks' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Memorials') (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 'Memorials')" + "description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "wikidata", - "description": "Layer 'Artworks' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Memorials')" - }, - { - "key": "wikipedia", - "description": "Layer 'Artworks' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Memorials')" - }, - { - "key": "wikidata", - "description": "Layer 'Artworks' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Memorials') 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 'Memorials') (This is only shown if subject:wikidata~.+)" + "description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "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 'Memorials')", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This artwork also serves as a memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_memorial", + "icon_url": "./assets/layers/memorial/memorial.svg" }, { "key": "historic", - "description": "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 'Memorials') 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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (This is only shown if memorial!=bench & historic=memorial)", - "value": "yes" + "description": "historic= is displayed as \"This artwork does not serve as a memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "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 'Memorials')", - "value": "bench" + "value": "bench", + "description": "amenity=bench is displayed as \"This artwork also serves as a bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_bench", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "amenity", - "description": "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 'Memorials') 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 'Memorials') (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 'Memorials') (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 'Memorials') (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 not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (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 'Memorials') (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 not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') (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 'Memorials') 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 'Memorials') (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 'Memorials') (This is only shown if amenity=bench)", - "value": "yes" - }, - { - "key": "inscription", - "description": "Layer 'Artworks' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key inscription. (This is only shown if amenity=bench)", - "value": "" + "description": "amenity= is displayed as \"This artwork does not serve as a bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_bench", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { "key": "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 'Memorials') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)", - "value": "memorial" + "value": "wayside_shrine", + "description": "historic=wayside_shrine is displayed as \"This artwork acts as a wayside shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_wayside_shrine", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" }, { "key": "historic", - "description": "Layer 'Artworks' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)", - "value": "" + "description": "historic= is displayed as \"This artwork does not act as a wayside shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_wayside_shrine", + "icon_url": "./assets/themes/artwork/artwork.svg" }, { - "key": "not:historic", - "description": "Layer 'Artworks' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not 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": "name", + "description": "Values of `name` are shown with \"The name of this shrine is {name}\" and can be updated. The question is \"What's the name of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#shrine_name", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "noname", + "value": "yes", + "description": "noname=yes is displayed as \"This shrine does not have a name\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#shrine_name", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "description": "Values of `religion` are shown with \"This shrine is {religion}\" and can be updated. The question is \"To which religion is this shrine dedicated?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "christian", + "description": "religion=christian is displayed as \"This is a Christian shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "buddhist", + "description": "religion=buddhist is displayed as \"This is a Buddhist shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "hindu", + "description": "religion=hindu is displayed as \"This is a Hindu shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "jain", + "description": "religion=jain is displayed as \"This is a Jain shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "jewish", + "description": "religion=jewish is displayed as \"This is a Jewish shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "muslim", + "description": "religion=muslim is displayed as \"This is an Islamic shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "pagan", + "description": "religion=pagan is displayed as \"This is a Pagan shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "shinto", + "description": "religion=shinto is displayed as \"This is a Shinto shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "sikh", + "description": "religion=sikh is displayed as \"This is a Sikh shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "taoist", + "description": "religion=taoist is displayed as \"This is a Taoist shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "religion", + "value": "zoroastrian", + "description": "religion=zoroastrian is displayed as \"This is a Zoroastrian shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#religion", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious denomination is {denomination}\" and can be updated. The question is \"What's the Christian denomination of the shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "catholic", + "description": "denomination=catholic is displayed as \"The religious subdenomination is Catholic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "roman_catholic", + "description": "denomination=roman_catholic is displayed as \"The religious subdenomination is Roman Catholic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "orthodox", + "description": "denomination=orthodox is displayed as \"The religious subdenomination is Orthodox\" by layers Artworks, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "greek_orthodox", + "description": "denomination=greek_orthodox is displayed as \"The religious subdenomination is Greek-Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "russian_orthodox", + "description": "denomination=russian_orthodox is displayed as \"The religious subdenomination is Russian-Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "serbian_orthodox", + "description": "denomination=serbian_orthodox is displayed as \"The religious subdenomination is Serbian Orthodox\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "protestant", + "description": "denomination=protestant is displayed as \"The religious subdenomination is Protestant\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "anglican", + "description": "denomination=anglican is displayed as \"The religious subdenomination is Anglican\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "adventist", + "description": "denomination=adventist is displayed as \"The religious subdenomination is Adventist\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "evangelical", + "description": "denomination=evangelical is displayed as \"The religious subdenomination is evangelical\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Muslim denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "shia", + "description": "denomination=shia is displayed as \"The religious subdenomination is Shia\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "sunni", + "description": "denomination=sunni is displayed as \"The religious subdenomination is Sunni\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "sufi", + "description": "denomination=sufi is displayed as \"The religious subdenomination is Sufi\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_muslim", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Jewish denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "conservative", + "description": "denomination=conservative is displayed as \"The religious subdenomination is Conservative\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "hasidic", + "description": "denomination=hasidic is displayed as \"The religious subdenomination is Hasidic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "value": "reform", + "description": "denomination=reform is displayed as \"The religious subdenomination is Reform\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_jewish", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The denomination of this shrine is {denomination}\" and can be updated. The question is \"What's the denomination of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_other", + "icon_url": "./assets/themes/artwork/artwork.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_nature.json b/Docs/TagInfo/mapcomplete_nature.json index 6988c56dac..ed74c20a6c 100644 --- a/Docs/TagInfo/mapcomplete_nature.json +++ b/Docs/TagInfo/mapcomplete_nature.json @@ -7,1867 +7,2060 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/nature/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Into nature has a layer Drinking water showing features with this tag", - "value": "drinking_water" + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "drinking_water", - "description": "The MapComplete theme Into nature has a layer Drinking water showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "The MapComplete theme Into nature has a layer Drinking water showing features with this tag", - "value": "drinking_water" + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "id", - "description": "Layer 'Drinking water' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Drinking water, Bird watching places, Nature reserve, Maps, Information boards, Benches, Picnic tables, Toilets, Guideposts, Shelter, BBQ, Firepit, Insect Hotels, Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Drinking water, Bird watching places, Nature reserve, Maps, Information boards, Benches, Picnic tables, Toilets, Guideposts, Shelter, BBQ, Firepit, Insect Hotels, Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "panoramax", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Drinking water, Bird watching places, Nature reserve, Maps, Information boards, Benches, Picnic tables, Toilets, Guideposts, Shelter, BBQ, Firepit, Insect Hotels, Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "mapillary", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Drinking water, Bird watching places, Nature reserve, Maps, Information boards, Benches, Picnic tables, Toilets, Guideposts, Shelter, BBQ, Firepit, Insect Hotels, Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "wikidata", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Drinking water, Bird watching places, Nature reserve, Maps, Information boards, Benches, Picnic tables, Toilets, Guideposts, Shelter, BBQ, Firepit, Insect Hotels, Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "wikipedia", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Drinking water, Bird watching places, Nature reserve, Maps, Information boards, Benches, Picnic tables, Toilets, Guideposts, Shelter, BBQ, Firepit, Insect Hotels, Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `operational_status` are shown with \"The operational status is {operational_status}\" and can be updated. The question is \"Is this drinking water spot still operational?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This drinking water is broken\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This drinking water is closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "disused:amenity", - "description": "Layer 'Drinking water' shows disused:amenity=drinking_water with a fixed text, namely 'This drinking water is permanently closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "drinking_water" + "value": "drinking_water", + "description": "disused:amenity=drinking_water is displayed as \"This drinking water is permanently closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fee", - "description": "Layer 'Drinking water' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layers Drinking water, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fee", - "description": "Layer 'Drinking water' shows fee=yes with a fixed text, namely 'One needs to pay to use this drinking water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"One needs to pay to use this drinking water point\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bubbler with a fixed text, namely 'This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "bubbler" + "value": "bubbler", + "description": "fountain=bubbler is displayed as \"This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bubbler.svg" }, { "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bottle_refill with a fixed text, namely 'This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "bottle_refill" + "value": "bottle_refill", + "description": "fountain=bottle_refill is displayed as \"This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bottle.svg" }, { "key": "man_made", - "description": "Layer 'Drinking water' shows man_made=water_tap with a fixed text, namely 'This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "water_tap" + "value": "water_tap", + "description": "man_made=water_tap is displayed as \"This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/tap.svg" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if fountain!=bottle_refill)", - "value": "yes" + "value": "yes", + "description": "bottle=yes is displayed as \"It is easy to refill water bottles\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if fountain!=bottle_refill)", - "value": "no" + "value": "no", + "description": "bottle=no is displayed as \"Water bottles may not fit\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "iced_water", - "description": "Layer 'Drinking water' shows iced_water=yes with a fixed text, namely 'Ice-cold water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "iced_water=yes is displayed as \"Ice-cold water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "cold_water", - "description": "Layer 'Drinking water' shows cold_water=yes with a fixed text, namely 'Actively cooled water is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "cold_water=yes is displayed as \"Actively cooled water is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "room_temperature_water", - "description": "Layer 'Drinking water' shows room_temperature_water=yes with a fixed text, namely 'Ambient temperature water (without active cooling or heating) is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "room_temperature_water=yes is displayed as \"Ambient temperature water (without active cooling or heating) is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "warm_water", - "description": "Layer 'Drinking water' shows warm_water=yes with a fixed text, namely 'Warmed water is provided here; the water is not dangerously hot' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "warm_water=yes is displayed as \"Warmed water is provided here; the water is not dangerously hot\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "hot_water", - "description": "Layer 'Drinking water' shows hot_water=yes with a fixed text, namely 'Hot water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "hot_water=yes is displayed as \"Hot water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "seasonal=no is displayed as \"Available all around the year\" by layers Drinking water, Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "summer" + "value": "summer", + "description": "seasonal=summer is displayed as \"Only available in summer\" by layers Drinking water, Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "spring;summer;autumn" + "value": "spring;summer;autumn", + "description": "seasonal=spring;summer;autumn is displayed as \"Closed during the winter\" by layers Drinking water, Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/no_winter.svg" }, { "key": "opening_hours", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) with a fixed text, namely 'This drinking water fountain is closed this season. As such, the opening hours are not shown.' (in the mapcomplete.org theme 'Into nature')" + "description": "seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) is displayed as \"This drinking water fountain is closed this season. As such, the opening hours are not shown.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layers Drinking water, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Into nature')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Drinking water, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "tourism", - "description": "Layer 'Drinking water' shows tourism=artwork with a fixed text, namely 'This drinking water point has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This drinking water point has an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Drinking water' shows not:tourism:artwork=yes with a fixed text, namely 'This drinking water point does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This drinking water point does not have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "tourism", - "description": "Layer 'Drinking water' shows tourism= with a fixed text, namely 'This drinking water point probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key tourism.", - "value": "" + "description": "tourism= is displayed as \"This drinking water point probably doesn't have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_wikidata", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "artist_name", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_name", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "website", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_website", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layers Drinking water, Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_subject", + "icon_url": "./assets/layers/drinking_water/drips.svg" }, { "key": "leisure", - "description": "The MapComplete theme Into nature has a layer Bird watching places showing features with this tag", - "value": "bird_hide" - }, - { - "key": "id", - "description": "Layer 'Bird watching places' 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 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bird watching places allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bird watching places allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bird watching places allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bird watching places allows to upload images and adds them under the 'panoramax'-tag (and 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 'Bird watching places allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bird_hide", + "description": "Features with this tag are displayed by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "shelter", - "description": "Layer 'Bird watching places' shows shelter=no & building= & amenity= with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "shelter=no & building= & amenity= is displayed as \"Bird blind\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "building", - "description": "Layer 'Bird watching places' shows shelter=no & building= & amenity= with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key building.", - "value": "" + "description": "shelter=no & building= & amenity= is displayed as \"Bird blind\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "amenity", - "description": "Layer 'Bird watching places' shows shelter=no & building= & amenity= with a fixed text, namely 'Bird blind' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key amenity.", - "value": "" + "description": "shelter=no & building= & amenity= is displayed as \"Bird blind\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "amenity", - "description": "Layer 'Bird watching places' shows amenity=shelter & building=yes & shelter=yes with a fixed text, namely 'Bird hide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "shelter" + "value": "shelter", + "description": "amenity=shelter & building=yes & shelter=yes is displayed as \"Bird hide\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "building", - "description": "Layer 'Bird watching places' shows amenity=shelter & building=yes & shelter=yes with a fixed text, namely 'Bird hide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "amenity=shelter & building=yes & shelter=yes is displayed as \"Bird hide\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "shelter", - "description": "Layer 'Bird watching places' shows amenity=shelter & building=yes & shelter=yes with a fixed text, namely 'Bird hide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "amenity=shelter & building=yes & shelter=yes is displayed as \"Bird hide\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "building", - "description": "Layer 'Bird watching places' shows building=tower & bird_hide=tower with a fixed text, namely 'Bird tower hide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "tower" + "value": "tower", + "description": "building=tower & bird_hide=tower is displayed as \"Bird tower hide\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "bird_hide", - "description": "Layer 'Bird watching places' shows building=tower & bird_hide=tower with a fixed text, namely 'Bird tower hide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "tower" + "value": "tower", + "description": "building=tower & bird_hide=tower is displayed as \"Bird tower hide\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "amenity", - "description": "Layer 'Bird watching places' shows amenity=shelter | building=yes | shelter=yes with a fixed text, namely 'Bird hide shelter' (in the mapcomplete.org theme 'Into nature')", - "value": "shelter" + "value": "shelter", + "description": "amenity=shelter | building=yes | shelter=yes is displayed as \"Bird hide shelter\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "building", - "description": "Layer 'Bird watching places' shows amenity=shelter | building=yes | shelter=yes with a fixed text, namely 'Bird hide shelter' (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "amenity=shelter | building=yes | shelter=yes is displayed as \"Bird hide shelter\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "shelter", - "description": "Layer 'Bird watching places' shows amenity=shelter | building=yes | shelter=yes with a fixed text, namely 'Bird hide shelter' (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "amenity=shelter | building=yes | shelter=yes is displayed as \"Bird hide shelter\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_shelter_or_wall", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "wheelchair", - "description": "Layer 'Bird watching places' shows wheelchair=designated with a fixed text, namely 'There are special provisions for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"There are special provisions for wheelchair users\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_wheelchair", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "wheelchair", - "description": "Layer 'Bird watching places' shows wheelchair=yes with a fixed text, namely 'A wheelchair can easily use this birdhide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"A wheelchair can easily use this birdhide\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_wheelchair", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "wheelchair", - "description": "Layer 'Bird watching places' shows wheelchair=limited with a fixed text, namely 'This birdhide is reachable by wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"This birdhide is reachable by wheelchair, but it is not easy\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_wheelchair", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "wheelchair", - "description": "Layer 'Bird watching places' shows wheelchair=no with a fixed text, namely 'Not accessible to wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"Not accessible to wheelchair users\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#bird_hide_wheelchair", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "operator", - "description": "Layer 'Bird watching places' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who operates this birdhide?\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#birdhide_operator", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "operator", - "description": "Layer 'Bird watching places' shows operator=Natuurpunt with a fixed text, namely 'Operated by Natuurpunt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "Natuurpunt" + "value": "Natuurpunt", + "description": "operator=Natuurpunt is displayed as \"Operated by Natuurpunt\" by layers Bird watching places, Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#birdhide_operator", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "operator", - "description": "Layer 'Bird watching places' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Operated by the Agency for Nature and Forests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "Agentschap Natuur en Bos" + "value": "Agentschap Natuur en Bos", + "description": "operator=Agentschap Natuur en Bos is displayed as \"Operated by the Agency for Nature and Forests\" by layer Bird watching places", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/birdhide.md#birdhide_operator", + "icon_url": "./assets/layers/birdhide/birdhide.svg" }, { "key": "leisure", - "description": "The MapComplete theme Into nature has a layer Nature reserve showing features with this tag", - "value": "nature_reserve" + "value": "nature_reserve", + "description": "Features with this tag are displayed by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "boundary", - "description": "The MapComplete theme Into nature has a layer Nature reserve showing features with this tag", - "value": "protected_area" - }, - { - "key": "id", - "description": "Layer 'Nature reserve' 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 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Nature reserve allows to upload images and adds them under the 'panoramax'-tag (and 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 'Nature reserve allows to upload images and adds them under the 'panoramax'-tag (and 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 'Nature reserve allows to upload images and adds them under the 'panoramax'-tag (and 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 'Nature reserve allows to upload images and adds them under the 'panoramax'-tag (and 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 'Nature reserve allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "protected_area", + "description": "Features with this tag are displayed by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "access:description", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'access:description' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `access:description` are shown with \"Accessin this nature reserve: {access:description}\" and can be updated. The question is \"Is this nature reserve accessible to the public?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "access", - "description": "Layer 'Nature reserve' shows access=yes & fee= with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "access=yes & fee= is displayed as \"Publicly accessible\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "fee", - "description": "Layer 'Nature reserve' shows access=yes & fee= with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key fee.", - "value": "" + "description": "access=yes & fee= is displayed as \"Publicly accessible\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "access", - "description": "Layer 'Nature reserve' shows access=no & fee= with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "access=no & fee= is displayed as \"Not accessible\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "fee", - "description": "Layer 'Nature reserve' shows access=no & fee= with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key fee.", - "value": "" + "description": "access=no & fee= is displayed as \"Not accessible\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "access", - "description": "Layer 'Nature reserve' shows access=private & fee= with a fixed text, namely 'Not accessible as this is a private area' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "private" + "value": "private", + "description": "access=private & fee= is displayed as \"Not accessible as this is a private area\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "fee", - "description": "Layer 'Nature reserve' shows access=private & fee= with a fixed text, namely 'Not accessible as this is a private area' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key fee.", - "value": "" + "description": "access=private & fee= is displayed as \"Not accessible as this is a private area\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "access", - "description": "Layer 'Nature reserve' shows access=permissive & fee= with a fixed text, namely 'Accessible despite being a privately owned area' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "permissive" + "value": "permissive", + "description": "access=permissive & fee= is displayed as \"Accessible despite being a privately owned area\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "fee", - "description": "Layer 'Nature reserve' shows access=permissive & fee= with a fixed text, namely 'Accessible despite being a privately owned area' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key fee.", - "value": "" + "description": "access=permissive & fee= is displayed as \"Accessible despite being a privately owned area\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "access", - "description": "Layer 'Nature reserve' shows access=guided & fee= with a fixed text, namely 'Only accessible with a guide or during organised activities' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "guided" + "value": "guided", + "description": "access=guided & fee= is displayed as \"Only accessible with a guide or during organised activities\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "fee", - "description": "Layer 'Nature reserve' shows access=guided & fee= with a fixed text, namely 'Only accessible with a guide or during organised activities' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key fee.", - "value": "" + "description": "access=guided & fee= is displayed as \"Only accessible with a guide or during organised activities\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "access", - "description": "Layer 'Nature reserve' shows access=yes & fee=yes with a fixed text, namely 'Accessible with fee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "access=yes & fee=yes is displayed as \"Accessible with fee\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "fee", - "description": "Layer 'Nature reserve' shows access=yes & fee=yes with a fixed text, namely 'Accessible with fee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "access=yes & fee=yes is displayed as \"Accessible with fee\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Access_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "operator", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who operates this area?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Operator_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "operator", - "description": "Layer 'Nature reserve' shows operator=Natuurpunt with a fixed text, namely 'Operated by Natuurpunt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "Natuurpunt" + "description": "operator~^((n|N)atuurpunt.*)$ is displayed as \"Operated by {operator}\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Operator_tag", + "icon_url": "./assets/layers/nature_reserve/Natuurpunt.jpg" }, { "key": "operator", - "description": "Layer 'Nature reserve' shows operator~^((n|N)atuurpunt.*)$ with a fixed text, namely 'Operated by {operator}' (in the mapcomplete.org theme 'Into nature')" - }, - { - "key": "operator", - "description": "Layer 'Nature reserve' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Operated by Agentschap Natuur en Bos' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "Agentschap Natuur en Bos" + "value": "Agentschap Natuur en Bos", + "description": "operator=Agentschap Natuur en Bos is displayed as \"Operated by Agentschap Natuur en Bos\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Operator_tag", + "icon_url": "./assets/layers/nature_reserve/ANB.jpg" }, { "key": "name", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Into nature') (This is only shown if name:nl=)" + "description": "Values of `name` are shown with \"This area is named {name}\" and can be updated. The question is \"What is the name of this area?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Name_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "noname", - "description": "Layer 'Nature reserve' shows noname=yes & name= with a fixed text, namely 'This area doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if name:nl=)", - "value": "yes" + "value": "yes", + "description": "noname=yes & name= is displayed as \"This area doesn't have a name\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Name_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "name", - "description": "Layer 'Nature reserve' shows noname=yes & name= with a fixed text, namely 'This area doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key name. (This is only shown if name:nl=)", - "value": "" + "description": "noname=yes & name= is displayed as \"This area doesn't have a name\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Name_tag", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "dog", - "description": "Layer 'Nature reserve' shows dog=leashed with a fixed text, namely 'Dogs have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if access=yes | access=permissive | access=guided)", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs have to be leashed\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Dogs_", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "dog", - "description": "Layer 'Nature reserve' shows dog=no with a fixed text, namely 'No dogs allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if access=yes | access=permissive | access=guided)", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"No dogs allowed\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Dogs_", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "dog", - "description": "Layer 'Nature reserve' shows dog=yes with a fixed text, namely 'Dogs are allowed to roam freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if access=yes | access=permissive | access=guided)", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed to roam freely\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Dogs_", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "website", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Nature reserve' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Into nature')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "curator", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'curator' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `curator` are shown with \"{curator} is the curator of this nature reserve\" and can be updated. The question is \"Whom is the curator of this nature reserve?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Curator", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "email", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What email address can one send to with questions and problems with this nature reserve?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Email", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "phone", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `phone` are shown with \"{phone}\" and can be updated. The question is \"What phone number can one call to with questions and problems with this nature reserve?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#phone", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "description", - "description": "Layer 'Nature reserve' shows values with key 'description' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `description` are shown with \"Extra information: {description}\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Non_editable_description", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "description:0", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'description:0' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `description:0` are shown with \"Extra info: {description:0}\" and can be updated. The question is \"Is there some extra info?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#Editable_description", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "wikidata", - "description": "Layer 'Nature reserve' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#wikipedia", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "wikipedia", - "description": "Layer 'Nature reserve' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Into nature')" + "description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#wikipedia", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "wikidata", - "description": "Layer 'Nature reserve' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key wikidata.", - "value": "" + "description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Nature reserve", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/nature_reserve.md#wikipedia", + "icon_url": "./assets/layers/nature_reserve/nature_reserve.svg" }, { "key": "tourism", - "description": "The MapComplete theme Into nature has a layer Maps showing features with this tag", - "value": "map" + "value": "map", + "description": "Features with this tag are displayed by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "information", - "description": "The MapComplete theme Into nature has a layer Maps showing features with this tag", - "value": "map" - }, - { - "key": "id", - "description": "Layer 'Maps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "map", + "description": "Features with this tag are displayed by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_type", - "description": "Layer 'Maps' shows map_type=topo with a fixed text, namely 'Topographical map

The map contains contour lines.

' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "topo" + "value": "topo", + "description": "map_type=topo is displayed as \"Topographical map

The map contains contour lines.

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_type", - "description": "Layer 'Maps' shows map_type=street with a fixed text, namely 'A map with all streets or ways of an area.

The streets are mostly named; the angles, distances etc. are accurate

' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "street" + "value": "street", + "description": "map_type=street is displayed as \"A map with all streets or ways of an area.

The streets are mostly named; the angles, distances etc. are accurate

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_type", - "description": "Layer 'Maps' shows map_type=scheme with a fixed text, namely 'This is a schematic map.

A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.

' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "scheme" + "value": "scheme", + "description": "map_type=scheme is displayed as \"This is a schematic map.

A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_type", - "description": "Layer 'Maps' shows map_type=toposcope with a fixed text, namely 'This is a toposcope.

A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point

' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "toposcope" + "value": "toposcope", + "description": "map_type=toposcope is displayed as \"This is a toposcope.

A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=building with a fixed text, namely 'A map of the rooms within a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "building" + "value": "building", + "description": "map_size=building is displayed as \"A map of the rooms within a building\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=site with a fixed text, namely 'A map of special site, like of a historical castle, a park, a campus, a forest, ....' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "site" + "value": "site", + "description": "map_size=site is displayed as \"A map of special site, like of a historical castle, a park, a campus, a forest, ....\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=village with a fixed text, namely 'A map showing the village or town' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "village" + "value": "village", + "description": "map_size=village is displayed as \"A map showing the village or town\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=city with a fixed text, namely 'A map of a city' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "city" + "value": "city", + "description": "map_size=city is displayed as \"A map of a city\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_size", - "description": "Layer 'Maps' shows map_size=region with a fixed text, namely 'The map of an entire region, showing multiple cities and villages' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "region" + "value": "region", + "description": "map_size=region is displayed as \"The map of an entire region, showing multiple cities and villages\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source", - "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `map_source` are shown with \"This map is based on {map_source}\" and can be updated. The question is \"On which data is this map based?\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap & not:map_source= with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "OpenStreetMap" + "value": "OpenStreetMap", + "description": "map_source=OpenStreetMap & not:map_source= is displayed as \"This map is based on OpenStreetMap\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "not:map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap & not:map_source= with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key not:map_source.", - "value": "" + "description": "map_source=OpenStreetMap & not:map_source= is displayed as \"This map is based on OpenStreetMap\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=yes with a fixed text, namely 'OpenStreetMap is clearly attributed, including the ODBL-license' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "yes" + "value": "yes", + "description": "map_source:attribution=yes is displayed as \"OpenStreetMap is clearly attributed, including the ODBL-license\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=incomplete with a fixed text, namely 'OpenStreetMap is clearly attributed, but the license is not mentioned' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "incomplete" + "value": "incomplete", + "description": "map_source:attribution=incomplete is displayed as \"OpenStreetMap is clearly attributed, but the license is not mentioned\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=sticker with a fixed text, namely 'OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "sticker" + "value": "sticker", + "description": "map_source:attribution=sticker is displayed as \"OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=none with a fixed text, namely 'There is no attribution at all' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "none" + "value": "none", + "description": "map_source:attribution=none is displayed as \"There is no attribution at all\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the mapcomplete.org theme 'Into nature') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "no" + "value": "no", + "description": "map_source:attribution=no is displayed as \"There is no attribution at all\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" }, { "key": "information", - "description": "The MapComplete theme Into nature has a layer Information boards showing features with this tag", - "value": "board" - }, - { - "key": "id", - "description": "Layer 'Information boards' 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 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "board", + "description": "Features with this tag are displayed by layer Information boards", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/information_board.md", + "icon_url": "./assets/layers/information_board/board.svg" }, { "key": "amenity", - "description": "The MapComplete theme Into nature has a layer Benches showing features with this tag", - "value": "bench" - }, - { - "key": "id", - "description": "Layer 'Benches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bench", + "description": "Features with this tag are displayed by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "two_sided", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'This bench does have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "backrest=yes is displayed as \"This bench does have a backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/one_sided.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "backrest=no is displayed as \"This bench does not have a backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/no_backrest.svg" }, { "key": "armrest", - "description": "Layer 'Benches' shows armrest=yes with a fixed text, namely 'This bench does have one or more armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_armrest", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "armrest", - "description": "Layer 'Benches' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "armrest=no is displayed as \"This bench does not have any armrests\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_armrest", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "seats", - "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_seats", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "seats:separated", - "description": "Layer 'Benches' shows seats:separated=no with a fixed text, namely 'This bench does not have separated seats' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_seats", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=wood with a fixed text, namely 'The seating is made from wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"The seating is made from wood\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=metal with a fixed text, namely 'The seating is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"The seating is made from metal\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=stone with a fixed text, namely 'The seating is made from stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "stone" + "value": "stone", + "description": "material=stone is displayed as \"The seating is made from stone\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=concrete with a fixed text, namely 'The seating is made from concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"The seating is made from concrete\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=plastic with a fixed text, namely 'The seating is made from plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"The seating is made from plastic\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=steel with a fixed text, namely 'The seating is made from steel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "steel" + "value": "steel", + "description": "material=steel is displayed as \"The seating is made from steel\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "direction", - "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Into nature') (This is only shown if two_sided!=yes)" + "description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_direction", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "brown" + "value": "brown", + "description": "colour=brown is displayed as \"Colour: brown\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "green" + "value": "green", + "description": "colour=green is displayed as \"Colour: green\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "gray" + "value": "gray", + "description": "colour=gray is displayed as \"Colour: gray\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "white" + "value": "white", + "description": "colour=white is displayed as \"Colour: white\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "red" + "value": "red", + "description": "colour=red is displayed as \"Colour: red\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "black" + "value": "black", + "description": "colour=black is displayed as \"Colour: black\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "blue" + "value": "blue", + "description": "colour=blue is displayed as \"Colour: blue\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yellow" + "value": "yellow", + "description": "colour=yellow is displayed as \"Colour: yellow\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "survey:date", - "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_survey_date", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "survey:date", - "description": "Layer 'Benches' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key survey:date.", - "value": "" + "description": "survey:date= is displayed as \"Surveyed today!\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_survey_date", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "inscription", - "description": "Layer 'Benches' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `inscription` are shown with \"This bench has the following inscription:

{inscription}

\" and can be updated. The question is \"Does this bench have an inscription?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:inscription", - "description": "Layer 'Benches' shows not:inscription=yes with a fixed text, namely 'This bench does not have an inscription' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "inscription", - "description": "Layer 'Benches' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key inscription.", - "value": "" + "description": "inscription= is displayed as \"This bench probably does not not have an inscription\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism=artwork with a fixed text, namely 'This bench has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This bench has an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Benches' shows not:tourism:artwork=yes with a fixed text, namely 'This bench does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This bench does not have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism= with a fixed text, namely 'This bench probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key tourism.", - "value": "" + "description": "tourism= is displayed as \"This bench probably doesn't have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "historic", - "description": "Layer 'Benches' shows historic=memorial with a fixed text, namely 'This bench is a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "" + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "architecture" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "mural" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "painting" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "sculpture" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "statue" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "bust" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "stone" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "installation" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "graffiti" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "relief" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "azulejo" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "tilework" - }, - { - "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)", - "value": "woodcarving" - }, - { - "key": "artist:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" - }, - { - "key": "artist_name", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" - }, - { - "key": "website", - "description": "Layer 'Benches' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" - }, - { - "key": "subject:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Into nature') (This is only shown if tourism=artwork)" + "value": "memorial", + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "leisure", - "description": "The MapComplete theme Into nature has a layer Picnic tables showing features with this tag", - "value": "picnic_table" - }, - { - "key": "id", - "description": "Layer 'Picnic tables' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "picnic_table", + "description": "Features with this tag are displayed by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Into nature') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "location", - "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Into nature') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `material` are shown with \"This picnic table is made of {material}\" and can be updated. The question is \"What material is this picnic table made of?\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=wood with a fixed text, namely 'This is a wooden picnic table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"This is a wooden picnic table\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"This is a concrete picnic table\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=plastic with a fixed text, namely 'This picnic table is made from (recycled) plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"This picnic table is made from (recycled) plastic\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=metal with a fixed text, namely 'This picnic table is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"This picnic table is made from metal\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "amenity", - "description": "The MapComplete theme Into nature has a layer Toilets showing features with this tag", - "value": "toilets" - }, - { - "key": "id", - "description": "Layer 'Toilets' 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 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Into nature') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Into nature') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Into nature') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Into nature') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Into nature') (This is only shown if repeat_on=)", - "value": "-1" + "value": "toilets", + "description": "Features with this tag are displayed by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Are these toilets publicly accessible?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only access to customers\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "lock" }, { "key": "access", - "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"Accessible, but one has to ask a key to enter\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Into nature')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "fee", - "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if access!=no)", - "value": "yes" - }, - { - "key": "fee", - "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if access!=no)", - "value": "no" + "value": "yes", + "description": "fee=yes is displayed as \"These are paid toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "charge", - "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Into nature') (This is only shown if fee=yes)" + "description": "Values of `charge` are shown with \"The fee is {charge}\" and can be updated. The question is \"How much does one have to pay for these toilets?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_charge", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "payment:cash", - "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Into nature') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Into nature') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Toilets' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:coins", - "description": "Layer 'Toilets' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Toilets' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Toilets' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Toilets' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Into nature') (This is only shown if access!=no)" - }, - { - "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if access!=no)", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Into nature') (This is only shown if access!=no)", - "value": "closed" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When are these toilets opened?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"No wheelchair access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "door:width", - "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Into nature') (This is only shown if (wheelchair=yes | wheelchair=designated))" + "description": "Values of `door:width` are shown with \"The door to the wheelchair-accessible toilet is {canonical(door:width)} wide\" and can be updated. The question is \"What is the width of the door to the wheelchair accessible toilet?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#wheelchair_door_width", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "seated" + "value": "seated", + "description": "toilets:position=seated is displayed as \"There are only seated toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "urinal" + "value": "urinal", + "description": "toilets:position=urinal is displayed as \"There are only urinals here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "squat" + "value": "squat", + "description": "toilets:position=squat is displayed as \"There are only squat toilets here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "seated;urinal" + "value": "seated;urinal", + "description": "toilets:position=seated;urinal is displayed as \"Both seated toilets and urinals are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=yes with a fixed text, namely 'There is a separate, signposted area for men and women' 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": "yes" + "value": "yes", + "description": "gender_segregated=yes is displayed as \"There is a separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=no with a fixed text, namely 'There is no separate, signposted area for men and women' 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" + "value": "no", + "description": "gender_segregated=no is displayed as \"There is no separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=yes with a fixed text, namely 'Free menstrual products are available to all visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "toilets:menstrual_products=yes is displayed as \"Free menstrual products are available to all visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=limited with a fixed text, namely 'Free menstrual products are available to some visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "limited" + "value": "limited", + "description": "toilets:menstrual_products=limited is displayed as \"Free menstrual products are available to some visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=no with a fixed text, namely 'No free menstrual products are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "toilets:menstrual_products=no is displayed as \"No free menstrual products are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'toilets:menstrual_products:location' (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)" + "description": "Values of `toilets:menstrual_products:location` are shown with \"The menstrual products are located in {toilets:menstrual_products:location}\" and can be updated. The question is \"Where are the free menstrual products located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=female_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "female_toilet" + "value": "female_toilet", + "description": "toilets:menstrual_products:location=female_toilet is displayed as \"The free, menstrual products are located in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=male_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "male_toilet" + "value": "male_toilet", + "description": "toilets:menstrual_products:location=male_toilet is displayed as \"The free, menstrual products are located in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=wheelchair_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "toilets:menstrual_products:location=wheelchair_toilet is displayed as \"The free, menstrual products are located in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "changing_table=yes is displayed as \"A changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/baby.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" + "value": "no", + "description": "changing_table=no is displayed as \"No changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'Into nature') (This is only shown if changing_table=yes)" + "description": "Values of `changing_table:location` are shown with \"A changing table is located at {changing_table:location}\" and can be updated. The question is \"Where is the changing table located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'A changing table is in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if changing_table=yes)", - "value": "female_toilet" + "value": "female_toilet", + "description": "changing_table:location=female_toilet is displayed as \"A changing table is in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'A changing table is in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if changing_table=yes)", - "value": "male_toilet" + "value": "male_toilet", + "description": "changing_table:location=male_toilet is displayed as \"A changing table is in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'A changing table is in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if changing_table=yes)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "changing_table:location=wheelchair_toilet is displayed as \"A changing table is in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' 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 'Into nature') (This is only shown if changing_table=yes)", - "value": "dedicated_room" + "value": "dedicated_room", + "description": "changing_table:location=dedicated_room is displayed as \"A changing table is in a dedicated room\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "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": "supervised", + "value": "yes", + "description": "supervised=yes is displayed as \"There is a person supervising these toilets during (most of) the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "toilets:handwashing", - "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets don't 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": "supervised", + "value": "interval", + "description": "supervised=interval is displayed as \"There is a person supervising these toilets, but they are present only during certain times of the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "supervised", + "value": "no", + "description": "supervised=no is displayed as \"These toilets are not supervised\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:paper_supplied", - "description": "Layer 'Toilets' 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 'Into nature') (This is only shown if toilets:position!=urinal)", - "value": "yes" + "value": "yes", + "description": "toilets:paper_supplied=yes is displayed as \"This toilet is equipped with toilet paper\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:paper_supplied", - "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" + "value": "no", + "description": "toilets:paper_supplied=no is displayed as \"You have to bring your own toilet paper to this toilet\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "yes", + "description": "toilets:handwashing=yes is displayed as \"These toilets have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "no", + "description": "toilets:handwashing=no is displayed as \"These toilets don't have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "electric_hand_dryer", + "description": "toilets:hands_drying=electric_hand_dryer is displayed as \"Electric hand dryers are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "paper_towel", + "description": "toilets:hands_drying=paper_towel is displayed as \"Paper towels are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel_cabinet", + "description": "toilets:hands_drying=towel_cabinet is displayed as \"A towel roll cabinet is available for drying hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel", + "description": "toilets:hands_drying=towel is displayed as \"A fabric towel available to dry your hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "no", + "description": "toilets:hands_drying=no is displayed as \"There are no hand drying facilities available.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "description", - "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Into nature')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#description", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "information", - "description": "The MapComplete theme Into nature has a layer Guideposts showing features with this tag", - "value": "guidepost" - }, - { - "key": "id", - "description": "Layer 'Guideposts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "guidepost", + "description": "Features with this tag are displayed by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "bicycle", - "description": "Layer 'Guideposts' shows bicycle=yes with a fixed text, namely 'This guidepost shows bicycle routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"This guidepost shows bicycle routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "hiking", - "description": "Layer 'Guideposts' shows hiking=yes with a fixed text, namely 'This guidepost shows hiking routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "hiking=yes is displayed as \"This guidepost shows hiking routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "mtb", - "description": "Layer 'Guideposts' shows mtb=yes with a fixed text, namely 'This guidepost shows mountain bike routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "mtb=yes is displayed as \"This guidepost shows mountain bike routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "horse", - "description": "Layer 'Guideposts' shows horse=yes with a fixed text, namely 'This guidepost shows horse riding routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" + "value": "yes", + "description": "horse=yes is displayed as \"This guidepost shows horse riding routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "ski", - "description": "Layer 'Guideposts' shows ski=yes with a fixed text, namely 'This guidepost shows ski routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" - }, - { - "key": "amenity", - "description": "The MapComplete theme Into nature has a layer Shelter showing features with this tag", - "value": "shelter" - }, - { - "key": "id", - "description": "Layer 'Shelter' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "shelter_type", - "description": "Layer 'Shelter' shows and asks freeform values for key 'shelter_type' (in the mapcomplete.org theme 'Into nature')" - }, - { - "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=public_transport with a fixed text, namely 'This is a shelter at a public transport stop.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "public_transport" - }, - { - "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=picnic_shelter with a fixed text, namely 'This is a shelter protecting from rain at a picnic site.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "picnic_shelter" - }, - { - "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=gazebo with a fixed text, namely 'This is a gazebo.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "gazebo" - }, - { - "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=weather_shelter with a fixed text, namely 'This is a small shelter, primarily intended for short breaks. Usually found in the mountains or alongside roads.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "weather_shelter" - }, - { - "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=lean_to with a fixed text, namely 'This is a shed with 3 walls, primarily intended for camping.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "lean_to" - }, - { - "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=pavilion with a fixed text, namely 'This is a pavilion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "pavilion" - }, - { - "key": "shelter_type", - "description": "Layer 'Shelter' shows shelter_type=basic_hut with a fixed text, namely 'This is a basic hut, providing basic shelter and sleeping facilities.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "basic_hut" - }, - { - "key": "amenity", - "description": "The MapComplete theme Into nature has a layer BBQ showing features with this tag", - "value": "bbq" - }, - { - "key": "id", - "description": "Layer 'BBQ' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "access", - "description": "Layer 'BBQ' shows access=yes with a fixed text, namely 'This barbecue can be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'BBQ' shows access=no with a fixed text, namely 'This barbecue can't be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" - }, - { - "key": "access", - "description": "Layer 'BBQ' shows access=private with a fixed text, namely 'This barbecue is private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "private" - }, - { - "key": "access", - "description": "Layer 'BBQ' shows access=permissive with a fixed text, namely 'This barbecue can be used by anyone, but the owner can revoke access at any time' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "permissive" - }, - { - "key": "access", - "description": "Layer 'BBQ' shows access=customers with a fixed text, namely 'This barbecue can only be used by customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'BBQ' shows access=permit with a fixed text, namely 'This barbecue can only be used by authorized persons' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "permit" - }, - { - "key": "covered", - "description": "Layer 'BBQ' shows covered=no with a fixed text, namely 'This barbecue is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" - }, - { - "key": "covered", - "description": "Layer 'BBQ' shows covered=yes with a fixed text, namely 'This barbecue is covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" - }, - { - "key": "fuel", - "description": "Layer 'BBQ' shows fuel=wood with a fixed text, namely 'This barbecue uses wood as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "wood" - }, - { - "key": "fuel", - "description": "Layer 'BBQ' shows fuel=charcoal with a fixed text, namely 'This barbecue uses charcoal as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "charcoal" - }, - { - "key": "fuel", - "description": "Layer 'BBQ' shows fuel=electric with a fixed text, namely 'This barbecue is powered by electricity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "electric" - }, - { - "key": "fuel", - "description": "Layer 'BBQ' shows fuel=gas with a fixed text, namely 'This barbecue uses gas as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "gas" - }, - { - "key": "leisure", - "description": "The MapComplete theme Into nature has a layer Firepit showing features with this tag", - "value": "firepit" - }, - { - "key": "id", - "description": "Layer 'Firepit' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "access", - "description": "Layer 'Firepit' shows access=yes with a fixed text, namely 'Public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'Firepit' shows access=no with a fixed text, namely 'No access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" - }, - { - "key": "access", - "description": "Layer 'Firepit' shows access=private with a fixed text, namely 'Private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "private" - }, - { - "key": "access", - "description": "Layer 'Firepit' shows access=permissive with a fixed text, namely 'Access until revoked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "permissive" - }, - { - "key": "access", - "description": "Layer 'Firepit' shows access=customers with a fixed text, namely 'Access only for customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'Firepit' shows access=permit with a fixed text, namely 'Access only for authorized' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "permit" - }, - { - "key": "seasonal", - "description": "Layer 'Firepit' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "no" - }, - { - "key": "seasonal", - "description": "Layer 'Firepit' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "summer" - }, - { - "key": "seasonal", - "description": "Layer 'Firepit' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "spring;summer;autumn" - }, - { - "key": "man_made", - "description": "The MapComplete theme Into nature has a layer Insect Hotels showing features with this tag", - "value": "insect_hotel" - }, - { - "key": "id", - "description": "Layer 'Insect Hotels' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "natural", - "description": "The MapComplete theme Into nature has a layer Tree showing features with this tag", - "value": "tree" - }, - { - "key": "id", - "description": "Layer 'Tree' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Into nature') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "species:wikidata", - "description": "Layer 'Tree' shows and asks freeform values for key 'species:wikidata' (in the mapcomplete.org theme 'Into nature')" - }, - { - "key": "circumference", - "description": "Layer 'Tree' shows and asks freeform values for key 'circumference' (in the mapcomplete.org theme 'Into nature')" - }, - { - "key": "height", - "description": "Layer 'Tree' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Into nature')" - }, - { - "key": "denotation", - "description": "Layer 'Tree' shows denotation=landmark with a fixed text, namely 'The tree is remarkable due to its size or prominent location. It is useful for navigation.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "landmark" - }, - { - "key": "denotation", - "description": "Layer 'Tree' shows denotation=natural_monument with a fixed text, namely 'The tree is a natural monument, e.g. because it is especially old, or of a valuable species.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "natural_monument" - }, - { - "key": "denotation", - "description": "Layer 'Tree' shows denotation=agricultural with a fixed text, namely 'The tree is used for agricultural purposes, e.g. in an orchard.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "agricultural" - }, - { - "key": "denotation", - "description": "Layer 'Tree' shows denotation=park with a fixed text, namely 'The tree is in a park or similar (cemetery, school grounds, …).' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "park" - }, - { - "key": "denotation", - "description": "Layer 'Tree' shows denotation=garden with a fixed text, namely 'The tree is in a residential garden.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "garden" - }, - { - "key": "denotation", - "description": "Layer 'Tree' shows denotation=avenue with a fixed text, namely 'This is a tree along an avenue.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "avenue" - }, - { - "key": "denotation", - "description": "Layer 'Tree' shows denotation=urban with a fixed text, namely 'The tree is in an urban area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "urban" - }, - { - "key": "denotation", - "description": "Layer 'Tree' shows denotation=none with a fixed text, namely 'The tree is outside of an urban area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')", - "value": "none" - }, - { - "key": "leaf_type", - "description": "Layer 'Tree' shows leaf_type=broadleaved with a fixed text, namely 'Broadleaved' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if species:wikidata=)", - "value": "broadleaved" - }, - { - "key": "leaf_type", - "description": "Layer 'Tree' shows leaf_type=needleleaved with a fixed text, namely 'Needleleaved' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if species:wikidata=)", - "value": "needleleaved" - }, - { - "key": "leaf_type", - "description": "Layer 'Tree' shows leaf_type=leafless with a fixed text, namely 'Permanently leafless' (in the mapcomplete.org theme 'Into nature') (This is only shown if species:wikidata=)", - "value": "leafless" - }, - { - "key": "leaf_cycle", - "description": "Layer 'Tree' shows leaf_cycle=deciduous with a fixed text, namely 'Deciduous: the tree loses its leaves for some time of the year.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if leaf_type!~^(^leafless$)$ & species:wikidata=)", - "value": "deciduous" - }, - { - "key": "leaf_cycle", - "description": "Layer 'Tree' shows leaf_cycle=evergreen with a fixed text, namely 'Evergreen.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if leaf_type!~^(^leafless$)$ & species:wikidata=)", - "value": "evergreen" + "value": "yes", + "description": "ski=yes is displayed as \"This guidepost shows ski routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "name", - "description": "Layer 'Tree' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)" - }, - { - "key": "name", - "description": "Layer 'Tree' shows name= & noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key name. (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)", - "value": "" + "description": "Values of `name` are shown with \"Name noted on the guidepost: {name}\" and can be updated. The question is \"What is the name noted on this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "noname", - "description": "Layer 'Tree' shows name= & noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)", - "value": "yes" + "value": "yes", + "description": "noname=yes is displayed as \"There is no name noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "ref", + "description": "Values of `ref` are shown with \"Reference number of the guidepost: {ref}\" and can be updated. The question is \"What is the reference number of this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "noref", + "value": "yes", + "description": "noref=yes is displayed as \"There is no reference number noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "ele", + "description": "Values of `ele` are shown with \"Elevation noted on the guidepost: {ele} m\" and can be updated. The question is \"What is the elevation noted on this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "noele", + "value": "yes", + "description": "noele=yes is displayed as \"There is no elevation noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele", + "icon_url": "./assets/layers/guidepost/guidepost.svg" + }, + { + "key": "amenity", + "value": "shelter", + "description": "Features with this tag are displayed by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "shelter_type", + "description": "Values of `shelter_type` are shown with \"Shelter type: {shelter_type}\" and can be updated. The question is \"What kind of shelter is this?\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "shelter_type", + "value": "public_transport", + "description": "shelter_type=public_transport is displayed as \"This is a shelter at a public transport stop.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "shelter_type", + "value": "picnic_shelter", + "description": "shelter_type=picnic_shelter is displayed as \"This is a shelter protecting from rain at a picnic site.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "shelter_type", + "value": "gazebo", + "description": "shelter_type=gazebo is displayed as \"This is a gazebo.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "shelter_type", + "value": "weather_shelter", + "description": "shelter_type=weather_shelter is displayed as \"This is a small shelter, primarily intended for short breaks. Usually found in the mountains or alongside roads.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "shelter_type", + "value": "lean_to", + "description": "shelter_type=lean_to is displayed as \"This is a shed with 3 walls, primarily intended for camping.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "shelter_type", + "value": "pavilion", + "description": "shelter_type=pavilion is displayed as \"This is a pavilion\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "shelter_type", + "value": "basic_hut", + "description": "shelter_type=basic_hut is displayed as \"This is a basic hut, providing basic shelter and sleeping facilities.\" by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type", + "icon_url": "./assets/layers/shelter/shelter.svg" + }, + { + "key": "amenity", + "value": "bbq", + "description": "Features with this tag are displayed by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "access", + "value": "yes", + "description": "access=yes is displayed as \"This barbecue can be used by anyone\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "access", + "value": "no", + "description": "access=no is displayed as \"This barbecue can't be used by anyone\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "access", + "value": "private", + "description": "access=private is displayed as \"This barbecue is private\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "access", + "value": "permissive", + "description": "access=permissive is displayed as \"This barbecue can be used by anyone, but the owner can revoke access at any time\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "access", + "value": "customers", + "description": "access=customers is displayed as \"This barbecue can only be used by customers\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "access", + "value": "permit", + "description": "access=permit is displayed as \"This barbecue can only be used by authorized persons\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "covered", + "value": "no", + "description": "covered=no is displayed as \"This barbecue is not covered\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#covered", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "covered", + "value": "yes", + "description": "covered=yes is displayed as \"This barbecue is covered\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#covered", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "fuel", + "value": "wood", + "description": "fuel=wood is displayed as \"This barbecue uses wood as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "fuel", + "value": "charcoal", + "description": "fuel=charcoal is displayed as \"This barbecue uses charcoal as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "fuel", + "value": "electric", + "description": "fuel=electric is displayed as \"This barbecue is powered by electricity\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "fuel", + "value": "gas", + "description": "fuel=gas is displayed as \"This barbecue uses gas as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" + }, + { + "key": "leisure", + "value": "firepit", + "description": "Features with this tag are displayed by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md", + "icon_url": "./assets/layers/assembly_point/fire.svg" + }, + { + "key": "access", + "value": "yes", + "description": "access=yes is displayed as \"Public\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" + }, + { + "key": "access", + "value": "no", + "description": "access=no is displayed as \"No access\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" + }, + { + "key": "access", + "value": "private", + "description": "access=private is displayed as \"Private\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" + }, + { + "key": "access", + "value": "permissive", + "description": "access=permissive is displayed as \"Access until revoked\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" + }, + { + "key": "access", + "value": "customers", + "description": "access=customers is displayed as \"Access only for customers\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" + }, + { + "key": "access", + "value": "permit", + "description": "access=permit is displayed as \"Access only for authorized\" by layer Firepit", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access", + "icon_url": "./assets/layers/assembly_point/fire.svg" + }, + { + "key": "man_made", + "value": "insect_hotel", + "description": "Features with this tag are displayed by layer Insect Hotels", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md", + "icon_url": "./assets/layers/insect_hotel/insect_hotel.svg" + }, + { + "key": "natural", + "value": "tree", + "description": "Features with this tag are displayed by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "species:wikidata", + "description": "Values of `species:wikidata` are shown with \"{wikipedia(species:wikidata):max-height: 25rem}\" and can be updated. The question is \"What species is this tree?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_species_wikidata", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "circumference", + "description": "Values of `circumference` are shown with \"The tree trunk has a circumference of {circumference} meter\" and can be updated. The question is \"What is the circumference of the tree trunk?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#circumference", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "height", + "description": "Values of `height` are shown with \"This tree is {height} meter high\" and can be updated. The question is \"What is the height of this tree?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#height", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "denotation", + "value": "landmark", + "description": "denotation=landmark is displayed as \"The tree is remarkable due to its size or prominent location. It is useful for navigation.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "denotation", + "value": "natural_monument", + "description": "denotation=natural_monument is displayed as \"The tree is a natural monument, e.g. because it is especially old, or of a valuable species.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "denotation", + "value": "agricultural", + "description": "denotation=agricultural is displayed as \"The tree is used for agricultural purposes, e.g. in an orchard.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "denotation", + "value": "park", + "description": "denotation=park is displayed as \"The tree is in a park or similar (cemetery, school grounds, …).\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "denotation", + "value": "garden", + "description": "denotation=garden is displayed as \"The tree is in a residential garden.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "denotation", + "value": "avenue", + "description": "denotation=avenue is displayed as \"This is a tree along an avenue.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "denotation", + "value": "urban", + "description": "denotation=urban is displayed as \"The tree is in an urban area.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "denotation", + "value": "none", + "description": "denotation=none is displayed as \"The tree is outside of an urban area.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "leaf_type", + "value": "broadleaved", + "description": "leaf_type=broadleaved is displayed as \"Broadleaved\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type", + "icon_url": "./assets/layers/tree_node/broadleaved.svg" + }, + { + "key": "leaf_type", + "value": "needleleaved", + "description": "leaf_type=needleleaved is displayed as \"Needleleaved\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type", + "icon_url": "./assets/layers/tree_node/needleleaved.svg" + }, + { + "key": "leaf_type", + "value": "leafless", + "description": "leaf_type=leafless is displayed as \"Permanently leafless\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type", + "icon_url": "./assets/layers/tree_node/leafless.svg" + }, + { + "key": "leaf_cycle", + "value": "deciduous", + "description": "leaf_cycle=deciduous is displayed as \"Deciduous: the tree loses its leaves for some time of the year.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_decidouous", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "leaf_cycle", + "value": "evergreen", + "description": "leaf_cycle=evergreen is displayed as \"Evergreen.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_decidouous", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "name", + "description": "Values of `name` are shown with \"Name: {name}\" and can be updated. The question is \"Does the tree have a name?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "name", + "description": "name= & noname=yes is displayed as \"The tree does not have a name.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name", + "icon_url": "./assets/layers/tree_node/unknown.svg" + }, + { + "key": "noname", + "value": "yes", + "description": "name= & noname=yes is displayed as \"The tree does not have a name.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=4 & heritage:operator=OnroerendErfgoed with a fixed text, namely 'Registered as heritage by Onroerend Erfgoed Flanders' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "4" + "value": "4", + "description": "heritage=4 & heritage:operator=OnroerendErfgoed is displayed as \"Registered as heritage by Onroerend Erfgoed Flanders\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=4 & heritage:operator=OnroerendErfgoed with a fixed text, namely 'Registered as heritage by Onroerend Erfgoed Flanders' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "OnroerendErfgoed" + "value": "OnroerendErfgoed", + "description": "heritage=4 & heritage:operator=OnroerendErfgoed is displayed as \"Registered as heritage by Onroerend Erfgoed Flanders\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=4 & heritage:operator=aatl with a fixed text, namely 'Registered as heritage by Direction du Patrimoine culturel Brussels' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "4" + "value": "4", + "description": "heritage=4 & heritage:operator=aatl is displayed as \"Registered as heritage by Direction du Patrimoine culturel Brussels\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=4 & heritage:operator=aatl with a fixed text, namely 'Registered as heritage by Direction du Patrimoine culturel Brussels' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "aatl" + "value": "aatl", + "description": "heritage=4 & heritage:operator=aatl is displayed as \"Registered as heritage by Direction du Patrimoine culturel Brussels\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=yes & heritage:operator= with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "yes" + "value": "yes", + "description": "heritage=yes & heritage:operator= is displayed as \"Registered as heritage by a different organisation\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=yes & heritage:operator= with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key heritage:operator. (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "" + "description": "heritage=yes & heritage:operator= is displayed as \"Registered as heritage by a different organisation\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=no & heritage:operator= with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "no" + "value": "no", + "description": "heritage=no & heritage:operator= is displayed as \"Not registered as heritage\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=no & heritage:operator= with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') Picking this answer will delete the key heritage:operator. (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "" + "description": "heritage=no & heritage:operator= is displayed as \"Not registered as heritage\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage~.+ with a fixed text, namely 'Registered as heritage by a different organisation' (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument)" + "description": "heritage~.+ is displayed as \"Registered as heritage by a different organisation\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "ref:OnroerendErfgoed", - "description": "Layer 'Tree' shows and asks freeform values for key 'ref:OnroerendErfgoed' (in the mapcomplete.org theme 'Into nature') (This is only shown if heritage=4 & heritage:operator=OnroerendErfgoed)" + "description": "Values of `ref:OnroerendErfgoed` are shown with \"\"\"/ Onroerend Erfgoed ID: {ref:OnroerendErfgoed}\" and can be updated. The question is \"What is the ID issued by Onroerend Erfgoed Flanders?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_ref_OnroerendErfgoed", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "wikidata", - "description": "Layer 'Tree' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Into nature') (This is only shown if denotation=landmark | denotation=natural_monument | wikidata~.+)" + "description": "Values of `wikidata` are shown with \"\"\"/ Wikidata: {wikidata}\" and can be updated. The question is \"What is the Wikidata ID for this tree?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_wikidata", + "icon_url": "./assets/layers/tree_node/unknown.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_notes.json b/Docs/TagInfo/mapcomplete_notes.json index 5260d33f06..c824be10d8 100644 --- a/Docs/TagInfo/mapcomplete_notes.json +++ b/Docs/TagInfo/mapcomplete_notes.json @@ -7,29 +7,38 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/notes/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "fixme", - "description": "The MapComplete theme Notes on OpenStreetMap has a layer OSM objects with FIXME tags showing features with this tag" + "description": "Features with this tag are displayed by layer OSM objects with FIXME tags", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md", + "icon_url": "./assets/svg/bug.svg" }, { "key": "FIXME", - "description": "The MapComplete theme Notes on OpenStreetMap has a layer OSM objects with FIXME tags showing features with this tag" + "description": "Features with this tag are displayed by layer OSM objects with FIXME tags", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md", + "icon_url": "./assets/svg/bug.svg" }, { "key": "id", - "description": "Layer 'OSM objects with FIXME tags' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Notes on OpenStreetMap') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer OSM objects with FIXME tags", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "fixme", - "description": "Layer 'OSM objects with FIXME tags' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Notes on OpenStreetMap')" + "description": "Values of `fixme` are shown with \"Fixme Text: {fixme}\" and can be updated. The question is \"What is wrong with this feature?\" by layer OSM objects with FIXME tags", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md#fixme", + "icon_url": "./assets/svg/bug.svg" }, { "key": "fixme", - "description": "Layer 'OSM objects with FIXME tags' shows fixme= with a fixed text, namely 'This issue has been resolved' and allows to pick this as a default answer (in the mapcomplete.org theme 'Notes on OpenStreetMap') Picking this answer will delete the key fixme.", - "value": "" + "description": "fixme= is displayed as \"This issue has been resolved\" by layer OSM objects with FIXME tags", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md#fixme", + "icon_url": "./assets/svg/bug.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_observation_towers.json b/Docs/TagInfo/mapcomplete_observation_towers.json index 97da8ec2b9..5c43fe8bb4 100644 --- a/Docs/TagInfo/mapcomplete_observation_towers.json +++ b/Docs/TagInfo/mapcomplete_observation_towers.json @@ -7,148 +7,208 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/observation_tower/Tower_observation.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "tower:type", - "description": "The MapComplete theme Observation towers has a layer Observation towers showing features with this tag", - "value": "observation" + "value": "observation", + "description": "Features with this tag are displayed by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "id", - "description": "Layer 'Observation towers' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Observation towers') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "panoramax", - "description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "mapillary", - "description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wikidata", - "description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wikipedia", - "description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "name", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Observation towers')" + "description": "Values of `name` are shown with \"This tower is called {name}\" and can be updated. The question is \"What is the name of this tower?\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#name", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "noname", - "description": "Layer 'Observation towers' shows noname=yes with a fixed text, namely 'This tower doesn't have a specific name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers')", - "value": "yes" + "value": "yes", + "description": "noname=yes is displayed as \"This tower doesn't have a specific name\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#name", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "height", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Observation towers')" + "description": "Values of `height` are shown with \"This tower is {height} high\" and can be updated. The question is \"What is the height of this tower?\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Height", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "access", - "description": "Layer 'Observation towers' shows access=yes with a fixed text, namely 'This tower is publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"This tower is publicly accessible\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#access", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "access", - "description": "Layer 'Observation towers' shows access=guided with a fixed text, namely 'This tower can only be visited with a guide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers')", - "value": "guided" + "value": "guided", + "description": "access=guided is displayed as \"This tower can only be visited with a guide\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#access", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "charge", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)" + "description": "Values of `charge` are shown with \"Visiting this tower costs {charge}\" and can be updated. The question is \"How much does one have to pay to enter this tower?\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Fee", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "fee", - "description": "Layer 'Observation towers' shows fee=no & charge= with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)", - "value": "no" + "value": "no", + "description": "fee=no & charge= is displayed as \"Free to visit\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Fee", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "charge", - "description": "Layer 'Observation towers' shows fee=no & charge= with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') Picking this answer will delete the key charge. (This is only shown if access=yes | access=guided)", - "value": "" + "description": "fee=no & charge= is displayed as \"Free to visit\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Fee", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "payment:cash", - "description": "Layer 'Observation towers' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Payment_methods", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Observation towers' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Payment_methods", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Observation towers' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Payment_methods", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "website", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Observation towers')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Observation towers' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Observation towers')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "step_count", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'step_count' (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)" + "description": "Values of `step_count` are shown with \"This tower has {step_count} steps to reach the top\" and can be updated. The question is \"How much individual steps does one have to climb to reach the top of this tower?\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#step_count", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "elevator", - "description": "Layer 'Observation towers' shows elevator=yes with a fixed text, namely 'This tower has an elevator which takes visitors to the top' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)", - "value": "yes" + "value": "yes", + "description": "elevator=yes is displayed as \"This tower has an elevator which takes visitors to the top\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#elevator", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "elevator", - "description": "Layer 'Observation towers' shows elevator=no with a fixed text, namely 'This tower does not have an elevator' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)", - "value": "no" + "value": "no", + "description": "elevator=no is displayed as \"This tower does not have an elevator\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#elevator", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "operator", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Observation towers')" + "description": "Values of `operator` are shown with \"Maintained by {operator}\" and can be updated. The question is \"Who maintains this tower?\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Operator", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wheelchair", - "description": "Layer 'Observation towers' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if elevator=yes & (access=yes | access=guided))", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wheelchair_access", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wheelchair", - "description": "Layer 'Observation towers' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if elevator=yes & (access=yes | access=guided))", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wheelchair_access", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wheelchair", - "description": "Layer 'Observation towers' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if elevator=yes & (access=yes | access=guided))", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wheelchair_access", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wheelchair", - "description": "Layer 'Observation towers' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if elevator=yes & (access=yes | access=guided))", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wheelchair_access", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wikidata", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Observation towers')" + "description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wikipedia", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wikipedia", - "description": "Layer 'Observation towers' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Observation towers')" + "description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wikipedia", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" }, { "key": "wikidata", - "description": "Layer 'Observation towers' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Observation towers') Picking this answer will delete the key wikidata.", - "value": "" + "description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Observation towers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wikipedia", + "icon_url": "./assets/layers/observation_tower/Tower_observation.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_onwheels.json b/Docs/TagInfo/mapcomplete_onwheels.json index b6dbfd16ac..2c96a7edb9 100644 --- a/Docs/TagInfo/mapcomplete_onwheels.json +++ b/Docs/TagInfo/mapcomplete_onwheels.json @@ -7,4072 +7,3968 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/onwheels/crest.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", - "value": "bar" + "value": "bar", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", - "value": "pub" + "value": "pub", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", - "value": "cafe" + "value": "cafe", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", - "value": "biergarten" + "value": "biergarten", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Cafés and pubs showing features with this tag", - "value": "nightclub" + "value": "nightclub", + "description": "Features with this tag are displayed by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "id", - "description": "Layer 'Cafés and pubs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Cafés and pubs, Entrance, Restaurants and fast food, Kerbs, Parking, Disabled parking spaces, Shop, Toilets, Pharmacies, Doctors, Hospitals, Reception desks, Elevator, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Entrance, Restaurants and fast food, Restaurants and fast food, Kerbs, Parking, Disabled parking spaces, Shop, Toilets, Pharmacies, Doctors, Reception desks, Elevator, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "panoramax", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Entrance, Restaurants and fast food, Restaurants and fast food, Kerbs, Parking, Disabled parking spaces, Shop, Toilets, Pharmacies, Doctors, Reception desks, Elevator, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "mapillary", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Entrance, Restaurants and fast food, Restaurants and fast food, Kerbs, Parking, Disabled parking spaces, Shop, Toilets, Pharmacies, Doctors, Reception desks, Elevator, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "wikidata", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Entrance, Restaurants and fast food, Restaurants and fast food, Kerbs, Parking, Disabled parking spaces, Shop, Toilets, Pharmacies, Doctors, Reception desks, Elevator, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "wikipedia", - "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Entrance, Restaurants and fast food, Restaurants and fast food, Kerbs, Parking, Disabled parking spaces, Shop, Toilets, Pharmacies, Doctors, Reception desks, Elevator, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Cafés and pubs, Entrance, Restaurants and fast food, Parking, Shop, Toilets, Reception desks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "location", - "description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Cafés and pubs, Entrance, Restaurants and fast food, Parking, Shop, Toilets, Reception desks, Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Cafés and pubs, Entrance, Restaurants and fast food, Parking, Shop, Toilets, Reception desks, Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Cafés and pubs, Entrance, Restaurants and fast food, Parking, Shop, Toilets, Reception desks, Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Cafés and pubs, Entrance, Restaurants and fast food, Parking, Shop, Toilets, Reception desks, Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "level", - "description": "Layer 'Cafés and pubs' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Cafés and pubs, Entrance, Restaurants and fast food, Parking, Shop, Toilets, Reception desks, Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "name", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `name` are shown with \"This business is named {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Name", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=pub with a fixed text, namely 'A pub, mostly for drinking beers in a warm, relaxed interior' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "pub" + "value": "pub", + "description": "amenity=pub is displayed as \"A pub, mostly for drinking beers in a warm, relaxed interior\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=bar with a fixed text, namely 'A more modern and commercial bar, possibly with a music and light installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "bar" + "value": "bar", + "description": "amenity=bar is displayed as \"A more modern and commercial bar, possibly with a music and light installation\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=cafe with a fixed text, namely 'A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "cafe" + "value": "cafe", + "description": "amenity=cafe is displayed as \"A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=restaurant with a fixed text, namely 'A restaurant where one can get a proper meal' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "restaurant" + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant where one can get a proper meal\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=biergarten with a fixed text, namely 'An open space where beer is served, typically seen in Germany' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "biergarten" + "value": "biergarten", + "description": "amenity=biergarten is displayed as \"An open space where beer is served, typically seen in Germany\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "amenity", - "description": "Layer 'Cafés and pubs' shows amenity=nightclub with a fixed text, namely 'This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "nightclub" + "value": "nightclub", + "description": "amenity=nightclub is displayed as \"This is a nightclub or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks\" by layer Cafés and pubs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "opening_hours", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Cafés and pubs, Restaurants and fast food, Shop, Pharmacies, Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#opening_hours", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "opening_hours", - "description": "Layer 'Cafés and pubs' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'OnWheels')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Cafés and pubs, Restaurants and fast food, Shop, Toilets, Pharmacies, Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#opening_hours", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "website", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Cafés and pubs, Restaurants and fast food, Shop, Pharmacies, Doctors, Hospitals, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Cafés and pubs' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OnWheels')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Cafés and pubs, Restaurants and fast food, Shop, Pharmacies, Doctors, Hospitals, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Cafés and pubs, Restaurants and fast food, Shop, Pharmacies, Doctors, Hospitals, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Cafés and pubs' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'OnWheels')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Cafés and pubs, Restaurants and fast food, Shop, Pharmacies, Doctors, Hospitals, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Cafés and pubs' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'OnWheels')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Cafés and pubs, Restaurants and fast food, Shop, Pharmacies, Doctors, Hospitals, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Cafés and pubs, Restaurants and fast food, Shop, Pharmacies, Doctors, Hospitals, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Cafés and pubs' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'OnWheels')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Cafés and pubs, Restaurants and fast food, Shop, Pharmacies, Doctors, Hospitals, Tourism accomodation, governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "payment:cash", - "description": "Layer 'Cafés and pubs' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Cafés and pubs, Restaurants and fast food, Shop, Toilets, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Cafés and pubs' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Cafés and pubs, Restaurants and fast food, Shop, Toilets, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Cafés and pubs' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Cafés and pubs, Restaurants and fast food, Shop, Toilets, Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "wheelchair", - "description": "Layer 'Cafés and pubs' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layers Cafés and pubs, Restaurants and fast food, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "wheelchair", - "description": "Layer 'Cafés and pubs' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layers Cafés and pubs, Restaurants and fast food, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "wheelchair", - "description": "Layer 'Cafés and pubs' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layers Cafés and pubs, Restaurants and fast food, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "wheelchair", - "description": "Layer 'Cafés and pubs' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layers Cafés and pubs, Restaurants and fast food, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "smoking", - "description": "Layer 'Cafés and pubs' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _country!~^(al|be)$)", - "value": "yes" + "value": "yes", + "description": "smoking=yes is displayed as \"Smoking is allowed\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking", + "icon_url": "./assets/layers/questions/smoking.svg" }, { "key": "smoking", - "description": "Layer 'Cafés and pubs' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _country!~^(al|be)$)", - "value": "no" + "value": "no", + "description": "smoking=no is displayed as \"Smoking is not allowed\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking", + "icon_url": "./assets/layers/questions/no_smoking.svg" }, { "key": "smoking", - "description": "Layer 'Cafés and pubs' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "outside", + "description": "smoking=outside is displayed as \"Smoking is allowed outside.\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "service:electricity", - "description": "Layer 'Cafés and pubs' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "service:electricity", - "description": "Layer 'Cafés and pubs' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" + "value": "limited", + "description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "service:electricity", - "description": "Layer 'Cafés and pubs' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "ask" + "value": "ask", + "description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "service:electricity", - "description": "Layer 'Cafés and pubs' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "outdoor_seating", - "description": "Layer 'Cafés and pubs' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#seating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "indoor_seating", - "description": "Layer 'Cafés and pubs' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layers Cafés and pubs, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#seating", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Cafés and pubs' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "internet_access", - "description": "Layer 'Cafés and pubs' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Cafés and pubs' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Cafés and pubs' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Cafés and pubs' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_ssid", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Cafés and pubs' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layers Cafés and pubs, Restaurants and fast food, Shop, Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_ssid", + "icon_url": "./assets/themes/onwheels/cafe.svg" }, { "key": "entrance", - "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag" + "description": "Features with this tag are displayed by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag", - "value": "door" + "value": "door", + "description": "Features with this tag are displayed by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "door", - "description": "The MapComplete theme OnWheels has a layer Entrance showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Entrance' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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 'Entrance allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Entrance' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Entrance' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Entrance' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Entrance' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Entrance' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Entrance' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "-1" + "description": "Features with this tag are displayed by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "entrance=yes is displayed as \"No specific entrance type is known\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows entrance= & indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key entrance.", - "value": "" + "description": "entrance= & indoor=door is displayed as \"This is an indoor door, separating a room or a corridor within a single building\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows entrance= & indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "door" + "value": "door", + "description": "entrance= & indoor=door is displayed as \"This is an indoor door, separating a room or a corridor within a single building\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=main is displayed as \"This is the main entrance\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "main" + "value": "main", + "description": "indoor= & entrance=main is displayed as \"This is the main entrance\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=secondary is displayed as \"This is a secondary entrance\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "secondary" + "value": "secondary", + "description": "indoor= & entrance=secondary is displayed as \"This is a secondary entrance\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=service is displayed as \"This is a service entrance - normally only used for employees, delivery, …\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "service" + "value": "service", + "description": "indoor= & entrance=service is displayed as \"This is a service entrance - normally only used for employees, delivery, …\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=exit is displayed as \"This is an exit where one can not enter\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "exit" + "value": "exit", + "description": "indoor= & entrance=exit is displayed as \"This is an exit where one can not enter\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=entrance is displayed as \"This is an entrance where one can only enter (but not exit)\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "entrance" + "value": "entrance", + "description": "indoor= & entrance=entrance is displayed as \"This is an entrance where one can only enter (but not exit)\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=emergency is displayed as \"This is emergency exit\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "emergency" + "value": "emergency", + "description": "indoor= & entrance=emergency is displayed as \"This is emergency exit\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor= & entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= & entrance=home is displayed as \"This is the entrance to a private home\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor= & entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "home" + "value": "home", + "description": "indoor= & entrance=home is displayed as \"This is the entrance to a private home\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Entrance_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "door=yes is displayed as \"The door type is not known\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=hinged with a fixed text, namely 'A classical, hinged door supported by joints' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "hinged" + "value": "hinged", + "description": "door=hinged is displayed as \"A classical, hinged door supported by joints\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=revolving with a fixed text, namely 'A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "revolving" + "value": "revolving", + "description": "door=revolving is displayed as \"A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=sliding with a fixed text, namely 'A sliding door where the door slides sidewards, typically parallel with a wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "sliding" + "value": "sliding", + "description": "door=sliding is displayed as \"A sliding door where the door slides sidewards, typically parallel with a wall\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=overhead with a fixed text, namely 'A door which rolls from overhead, typically seen for garages' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "overhead" + "value": "overhead", + "description": "door=overhead is displayed as \"A door which rolls from overhead, typically seen for garages\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "door", - "description": "Layer 'Entrance' shows door=no with a fixed text, namely 'This is an entrance without a physical door' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "door=no is displayed as \"This is an entrance without a physical door\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#Door_type", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=yes with a fixed text, namely 'This is an automatic door' (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "yes" + "value": "yes", + "description": "automatic_door=yes is displayed as \"This is an automatic door\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=no with a fixed text, namely 'This door is not automated' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "no" + "value": "no", + "description": "automatic_door=no is displayed as \"This door is not automated\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=motion with a fixed text, namely 'This door will open automatically when motion is detected' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "motion" + "value": "motion", + "description": "automatic_door=motion is displayed as \"This door will open automatically when motion is detected\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=floor with a fixed text, namely 'This door will open automatically when a sensor in the floor is triggered' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "floor" + "value": "floor", + "description": "automatic_door=floor is displayed as \"This door will open automatically when a sensor in the floor is triggered\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=button with a fixed text, namely 'This door will open automatically when a button is pressed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "button" + "value": "button", + "description": "automatic_door=button is displayed as \"This door will open automatically when a button is pressed\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=slowdown_button with a fixed text, namely 'This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "slowdown_button" + "value": "slowdown_button", + "description": "automatic_door=slowdown_button is displayed as \"This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=continuous with a fixed text, namely 'This door revolves automatically all the time' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "continuous" + "value": "continuous", + "description": "automatic_door=continuous is displayed as \"This door revolves automatically all the time\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=serviced_on_button_press with a fixed text, namely 'This door will be opened by staff when requested by pressing a button' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "serviced_on_button_press" + "value": "serviced_on_button_press", + "description": "automatic_door=serviced_on_button_press is displayed as \"This door will be opened by staff when requested by pressing a button\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "automatic_door", - "description": "Layer 'Entrance' shows automatic_door=serviced_on_request with a fixed text, namely 'This door will be opened by staff when requested' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if door!=no)", - "value": "serviced_on_request" + "value": "serviced_on_request", + "description": "automatic_door=serviced_on_request is displayed as \"This door will be opened by staff when requested\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#automatic_door", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "width", - "description": "Layer 'Entrance' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `width` are shown with \"This door has a width of {canonical(width)}\" and can be updated. The question is \"What is the width of this door/entrance?\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#width", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "kerb:height", - "description": "Layer 'Entrance' shows and asks freeform values for key 'kerb:height' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `kerb:height` are shown with \"The kerb height of this door is {kerb:height}\" and can be updated. The question is \"What is the height of this kerb?\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#kerb_height", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "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 'OnWheels')", - "value": "0" + "value": "0", + "description": "kerb:height=0 is displayed as \"This door does not have a kerb\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#kerb_height", + "icon_url": "./assets/themes/onwheels/entrance.svg" + }, + { + "key": "ref", + "description": "Values of `ref` are shown with \"This door has {ref} as reference number\" and can be updated. The question is \"Does this door have a reference number?\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#ref", + "icon_url": "./assets/themes/onwheels/entrance.svg" + }, + { + "key": "ref", + "description": "ref= is displayed as \"No reference number\" by layer Entrance", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/entrance.md#ref", + "icon_url": "./assets/themes/onwheels/entrance.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Restaurants and fast food showing features with this tag", - "value": "fast_food" + "value": "fast_food", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Restaurants and fast food showing features with this tag", - "value": "restaurant" - }, - { - "key": "id", - "description": "Layer 'Restaurants and fast food' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "restaurant", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "name", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `name` are shown with \"The name of this business is {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Name", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "fast_food" + "value": "fast_food", + "description": "amenity=fast_food is displayed as \"This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Fastfood_vs_restaurant", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "restaurant" - }, - { - "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'OnWheels')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:website", - "description": "Layer 'Restaurants and fast food' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "email", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:email", - "description": "Layer 'Restaurants and fast food' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "operator:email", - "description": "Layer 'Restaurants and fast food' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "phone", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:phone", - "description": "Layer 'Restaurants and fast food' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "payment:cash", - "description": "Layer 'Restaurants and fast food' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Restaurants and fast food' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "-1" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant, focused on creating a nice experience where one is served at the table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Fastfood_vs_restaurant", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `cuisine` are shown with \"This place mostly serves {cuisine}\" and can be updated. The question is \"What kind of food is served here?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'Pizzeria' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "pizza" + "value": "pizza", + "description": "cuisine=pizza is displayed as \"Pizzeria\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'Friture' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "friture" + "value": "friture", + "description": "cuisine=friture is displayed as \"Friture\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Serves mainly pasta' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "pasta" + "value": "pasta", + "description": "cuisine=pasta is displayed as \"Serves mainly pasta\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'Kebab shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "kebab" + "value": "kebab", + "description": "cuisine=kebab is displayed as \"Kebab shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'Sandwich shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "sandwich" + "value": "sandwich", + "description": "cuisine=sandwich is displayed as \"Sandwich shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgersrestaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "burger" + "value": "burger", + "description": "cuisine=burger is displayed as \"Burgersrestaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "sushi" + "value": "sushi", + "description": "cuisine=sushi is displayed as \"Sushi restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffeebar' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "coffee" + "value": "coffee", + "description": "cuisine=coffee is displayed as \"Coffeebar\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'Italian restaurant (which serves more than pasta and pizza)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "italian" + "value": "italian", + "description": "cuisine=italian is displayed as \"Italian restaurant (which serves more than pasta and pizza)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "french" + "value": "french", + "description": "cuisine=french is displayed as \"French restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "chinese" + "value": "chinese", + "description": "cuisine=chinese is displayed as \"Chinese\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "greek" + "value": "greek", + "description": "cuisine=greek is displayed as \"Greek\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "indian" + "value": "indian", + "description": "cuisine=indian is displayed as \"Indian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "turkish" + "value": "turkish", + "description": "cuisine=turkish is displayed as \"Turkish restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "thai" + "value": "thai", + "description": "cuisine=thai is displayed as \"Thai restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=mexican with a fixed text, namely 'Mexican dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "mexican " + "value": "mexican ", + "description": "cuisine=mexican is displayed as \"Mexican dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=japanese with a fixed text, namely 'Japanese dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "japanese " + "value": "japanese ", + "description": "cuisine=japanese is displayed as \"Japanese dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chicken with a fixed text, namely 'Chicken based dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "chicken " + "value": "chicken ", + "description": "cuisine=chicken is displayed as \"Chicken based dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=seafood with a fixed text, namely 'Seafood dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "seafood " + "value": "seafood ", + "description": "cuisine=seafood is displayed as \"Seafood dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "image", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "website:menu", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website:menu' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `website:menu` are shown with \"{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage is the menu published?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#menu_website", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=required with a fixed text, namely 'A reservation is required at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if takeaway!=only)", - "value": "required" + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=recommended with a fixed text, namely 'A reservation is not required, but still recommended to make sure you get a table' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if takeaway!=only)", - "value": "recommended" + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=yes with a fixed text, namely 'Reservation is possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if takeaway!=only)", - "value": "yes" + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=no with a fixed text, namely 'Reservation is not possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if takeaway!=only)", - "value": "no" + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "only" + "value": "only", + "description": "takeaway=only is displayed as \"This is a take-away only business\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "takeaway=yes is displayed as \"Take-away is possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "takeaway=no is displayed as \"Take-away is not possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (possibly via a third party)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "delivery=yes is displayed as \"This business does home delivery (possibly via a third party)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#delivery", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "delivery=no is displayed as \"This business does not deliver at home\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#delivery", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=yes with a fixed text, namely 'This fast-food restaurant has a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if amenity=fast_food)", - "value": "yes" + "value": "yes", + "description": "drive_through=yes is displayed as \"This fast-food restaurant has a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=no with a fixed text, namely 'This fast-food restaurant does not have a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if amenity=fast_food)", - "value": "no" + "value": "no", + "description": "drive_through=no is displayed as \"This fast-food restaurant does not have a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours:drive_through' (in the mapcomplete.org theme 'OnWheels') (This is only shown if drive_through=yes)" + "description": "Values of `opening_hours:drive_through` are shown with \"

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}\" and can be updated. The question is \"What are the opening hours of the drive-through?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through_opening_hours", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows opening_hours:drive_through= with a fixed text, namely 'The opening hours of the drive-through are the same as the restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key opening_hours:drive_through. (This is only shown if drive_through=yes)", - "value": "" + "description": "opening_hours:drive_through= is displayed as \"The opening hours of the drive-through are the same as the restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through_opening_hours", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg;cross_bottom_right:red" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Some vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"All dishes are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegetarian version, but this should be demanded' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegetarian=on_demand is displayed as \"Some dishes might be adapted to a vegetarian version, but this should be demanded\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"Some vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"All dishes are vegan\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegan version if asked for' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegan=on_demand is displayed as \"Some dishes might be adapted to a vegan version if asked for\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:halal=no is displayed as \"There are no halal options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:halal=limited is displayed as \"There is a small halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:halal=yes is displayed as \"There is a halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:halal=only is displayed as \"Only halal options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'There are no organic options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"There are no organic options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'There is an organic menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"There is an organic menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'Serves only vegetarian snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"Serves only vegetarian snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Only a small selection of snacks are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'Serves only vegan snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"Serves only vegan snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"A small selection of vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'Organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"Organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'No organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"No organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "vegetable" + "value": "vegetable", + "description": "friture:oil=vegetable is displayed as \"The frying is done with vegetable oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_oil", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "animal" + "value": "animal", + "description": "friture:oil=animal is displayed as \"The frying is done with animal oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_oil", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "reusable_packaging:accept=yes is displayed as \"You can bring your own containers to get your order, saving on single-use packaging material and thus waste\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "reusable_packaging:accept=no is displayed as \"Bringing your own container is not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "reusable_packaging:accept=only is displayed as \"You must bring your own container to order here.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _country!~^(al|be)$)", - "value": "yes" - }, - { - "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _country!~^(al|be)$)", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _country!~^(al|be)$)", - "value": "outside" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "ask" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" - }, - { - "key": "outdoor_seating", - "description": "Layer 'Restaurants and fast food' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "indoor_seating", - "description": "Layer 'Restaurants and fast food' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "unleashed" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "outside" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "barrier", - "description": "The MapComplete theme OnWheels has a layer Kerbs showing features with this tag", - "value": "kerb" - }, - { - "key": "id", - "description": "Layer 'Kerbs' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and 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 'Kerbs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "kerb", + "description": "Features with this tag are displayed by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=raised with a fixed text, namely 'This kerb is raised (>3 cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "raised" + "value": "raised", + "description": "kerb=raised is displayed as \"This kerb is raised (>3 cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/raised.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=lowered with a fixed text, namely 'This kerb is lowered (~3 cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "lowered" + "value": "lowered", + "description": "kerb=lowered is displayed as \"This kerb is lowered (~3 cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/lowered.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=flush with a fixed text, namely 'This kerb is flush (~0cm)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "flush" + "value": "flush", + "description": "kerb=flush is displayed as \"This kerb is flush (~0cm)\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/flush.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=no with a fixed text, namely 'There is no kerb here' (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "no" + "value": "no", + "description": "kerb=no is displayed as \"There is no kerb here\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/layers/kerbs/no.svg" }, { "key": "kerb", - "description": "Layer 'Kerbs' shows kerb=yes with a fixed text, namely 'There is a kerb of unknown height' (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "yes" + "value": "yes", + "description": "kerb=yes is displayed as \"There is a kerb of unknown height\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_type", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=yes with a fixed text, namely 'This kerb has tactile paving.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "yes" + "value": "yes", + "description": "tactile_paving=yes is displayed as \"This kerb has tactile paving.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=no with a fixed text, namely 'This kerb does not have tactile paving.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "no" + "value": "no", + "description": "tactile_paving=no is displayed as \"This kerb does not have tactile paving.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=contrasted with a fixed text, namely 'This kerb has tactile paving, which has a contrasting colour to the surrounding pavement.' (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "contrasted" + "value": "contrasted", + "description": "tactile_paving=contrasted is displayed as \"This kerb has tactile paving, which has a contrasting colour to the surrounding pavement.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving", - "description": "Layer 'Kerbs' shows tactile_paving=incorrect with a fixed text, namely 'This kerb has tactile paving, but it is incorrect.' (in the mapcomplete.org theme 'OnWheels') (This is only shown if _geometry:type=Point)", - "value": "incorrect" + "value": "incorrect", + "description": "tactile_paving=incorrect is displayed as \"This kerb has tactile paving, but it is incorrect.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows and asks freeform values for key 'tactile_paving:colour' (in the mapcomplete.org theme 'OnWheels') (This is only shown if tactile_paving!=no & _geometry:type=Point)" + "description": "Values of `tactile_paving:colour` are shown with \"The tactile paving is coloured {tactile_paving:colour}.\" and can be updated. The question is \"What is the colour of the tactile paving?\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=yellow with a fixed text, namely 'The tactile paving is yellow.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "yellow" + "value": "yellow", + "description": "tactile_paving:colour=yellow is displayed as \"The tactile paving is yellow.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=red with a fixed text, namely 'The tactile paving is red.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "red" + "value": "red", + "description": "tactile_paving:colour=red is displayed as \"The tactile paving is red.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=white with a fixed text, namely 'The tactile paving is white.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "white" + "value": "white", + "description": "tactile_paving:colour=white is displayed as \"The tactile paving is white.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "tactile_paving:colour", - "description": "Layer 'Kerbs' shows tactile_paving:colour=grey with a fixed text, namely 'The tactile paving is grey.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if tactile_paving!=no & _geometry:type=Point)", - "value": "grey" + "value": "grey", + "description": "tactile_paving:colour=grey is displayed as \"The tactile paving is grey.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#tactile_paving_colour", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "kerb:height", - "description": "Layer 'Kerbs' shows and asks freeform values for key 'kerb:height' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `kerb:height` are shown with \"Kerb height: {kerb:height}\" and can be updated. The question is \"What is the height of this kerb?\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_height", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "kerb:height", - "description": "Layer 'Kerbs' shows kerb:height=0 with a fixed text, namely 'This kerb is flush and is lower than 1cm.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "0" + "value": "0", + "description": "kerb:height=0 is displayed as \"This kerb is flush and is lower than 1cm.\" by layer Kerbs", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/kerbs.md#kerb_height", + "icon_url": "./assets/themes/onwheels/cone.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Parking showing features with this tag", - "value": "parking" - }, - { - "key": "id", - "description": "Layer 'Parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "level", - "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Parking' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Parking' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Parking' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Parking' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "-1" + "value": "parking", + "description": "Features with this tag are displayed by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=surface with a fixed text, namely 'This is a surface parking lot' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "surface" + "value": "surface", + "description": "parking=surface is displayed as \"This is a surface parking lot\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=street_side with a fixed text, namely 'This is a parking bay next to a street' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "street_side" + "value": "street_side", + "description": "parking=street_side is displayed as \"This is a parking bay next to a street\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=underground with a fixed text, namely 'This is an underground parking garage' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "underground" + "value": "underground", + "description": "parking=underground is displayed as \"This is an underground parking garage\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=multi-storey with a fixed text, namely 'This is a multi-storey parking garage' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "multi-storey" + "value": "multi-storey", + "description": "parking=multi-storey is displayed as \"This is a multi-storey parking garage\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=rooftop with a fixed text, namely 'This is a rooftop parking deck' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "rooftop" + "value": "rooftop", + "description": "parking=rooftop is displayed as \"This is a rooftop parking deck\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=lane with a fixed text, namely 'This is a lane for parking on the road' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "lane" + "value": "lane", + "description": "parking=lane is displayed as \"This is a lane for parking on the road\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=carports with a fixed text, namely 'This is parking covered by carports' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "carports" + "value": "carports", + "description": "parking=carports is displayed as \"This is parking covered by carports\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=garage_boxes with a fixed text, namely 'This a parking consisting of garage boxes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "garage_boxes" + "value": "garage_boxes", + "description": "parking=garage_boxes is displayed as \"This a parking consisting of garage boxes\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=layby with a fixed text, namely 'This is a parking on a layby' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "layby" + "value": "layby", + "description": "parking=layby is displayed as \"This is a parking on a layby\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=sheds with a fixed text, namely 'This is a parking consisting of sheds' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "sheds" + "value": "sheds", + "description": "parking=sheds is displayed as \"This is a parking consisting of sheds\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `capacity:disabled` are shown with \"There are {capacity:disabled} disabled parking spots\" and can be updated. The question is \"How many disabled parking spots are there at this parking?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=yes with a fixed text, namely 'There are disabled parking spots, but it is not known how many' (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "capacity:disabled=yes is displayed as \"There are disabled parking spots, but it is not known how many\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=no with a fixed text, namely 'There are no disabled parking spots' (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "capacity:disabled=no is displayed as \"There are no disabled parking spots\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=0 with a fixed text, namely 'There are no disabled parking spots' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "0" + "value": "0", + "description": "capacity:disabled=0 is displayed as \"There are no disabled parking spots\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "capacity", - "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `capacity` are shown with \"There are {capacity} parking spots\" and can be updated. The question is \"How many parking spots are there at this parking?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Parking' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `maxstay` are shown with \"One can stay at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum amount of time one is allowed to stay here?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#maxstay", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Parking' shows maxstay=unlimited with a fixed text, namely 'There is no limit to the amount of time one can stay here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "unlimited" + "value": "unlimited", + "description": "maxstay=unlimited is displayed as \"There is no limit to the amount of time one can stay here\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#maxstay", + "icon_url": "./assets/themes/onwheels/parking.svg" }, { "key": "parking_space", - "description": "The MapComplete theme OnWheels has a layer Disabled parking spaces showing features with this tag", - "value": "disabled" - }, - { - "key": "id", - "description": "Layer 'Disabled parking spaces' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Disabled parking spaces allows to upload images and adds them under the 'panoramax'-tag (and 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 'Disabled parking spaces allows to upload images and adds them under the 'panoramax'-tag (and 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 'Disabled parking spaces allows to upload images and adds them under the 'panoramax'-tag (and 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 'Disabled parking spaces allows to upload images and adds them under the 'panoramax'-tag (and 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 'Disabled parking spaces allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "disabled", + "description": "Features with this tag are displayed by layer Disabled parking spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces_disabled.md", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "shop", - "description": "The MapComplete theme OnWheels has a layer Shop showing features with this tag" + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "craft", - "description": "The MapComplete theme OnWheels has a layer Shop showing features with this tag", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "craft", - "description": "The MapComplete theme OnWheels has a layer Shop showing features with this tag", - "value": "key_cutter" - }, - { - "key": "id", - "description": "Layer 'Shop' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "key_cutter", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "name", - "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shops_name", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#brand", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "not:brand", - "description": "Layer 'Shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#brand", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'OnWheels')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:website", - "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "email", - "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:email", - "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "operator:email", - "description": "Layer 'Shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:phone", - "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "payment:cash", - "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "level", - "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "-1" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_binding", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_binding", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#optometrist_service", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#optometrist_service", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sells_new_bikes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sells_new_bikes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_rental", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_rental", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'OnWheels') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_city_bike", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'OnWheels') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_ebike", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'OnWheels') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_kid_bike", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'OnWheels') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_bmx", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'OnWheels') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_mtb", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'OnWheels') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'OnWheels') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'OnWheels') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'OnWheels') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "unleashed" - }, - { - "key": "dog", - "description": "Layer 'Shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "outside" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "description", - "description": "Layer 'Shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layers Shop, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#description", + "icon_url": "./assets/themes/onwheels/shop.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Toilets showing features with this tag", - "value": "toilets" - }, - { - "key": "id", - "description": "Layer 'Toilets' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "-1" + "value": "toilets", + "description": "Features with this tag are displayed by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Are these toilets publicly accessible?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only access to customers\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "lock" }, { "key": "access", - "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"Accessible, but one has to ask a key to enter\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'OnWheels')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "fee", - "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if access!=no)", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"These are paid toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "fee", - "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if access!=no)", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "charge", - "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'OnWheels') (This is only shown if fee=yes)" - }, - { - "key": "payment:cash", - "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'OnWheels') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'OnWheels') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Toilets' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if fee=yes)", - "value": "yes" + "description": "Values of `charge` are shown with \"The fee is {charge}\" and can be updated. The question is \"How much does one have to pay for these toilets?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_charge", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "payment:coins", - "description": "Layer 'Toilets' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Toilets' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Toilets' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Toilets' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'OnWheels') (This is only shown if access!=no)" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When are these toilets opened?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if access!=no)", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'OnWheels') (This is only shown if access!=no)", - "value": "closed" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"No wheelchair access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "door:width", - "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'OnWheels') (This is only shown if (wheelchair=yes | wheelchair=designated))" + "description": "Values of `door:width` are shown with \"The door to the wheelchair-accessible toilet is {canonical(door:width)} wide\" and can be updated. The question is \"What is the width of the door to the wheelchair accessible toilet?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#wheelchair_door_width", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "seated" + "value": "seated", + "description": "toilets:position=seated is displayed as \"There are only seated toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "urinal" + "value": "urinal", + "description": "toilets:position=urinal is displayed as \"There are only urinals here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "squat" + "value": "squat", + "description": "toilets:position=squat is displayed as \"There are only squat toilets here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "seated;urinal" + "value": "seated;urinal", + "description": "toilets:position=seated;urinal is displayed as \"Both seated toilets and urinals are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=yes with a fixed text, namely 'There is a separate, signposted area for men and women' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:position!=urinal)", - "value": "yes" + "value": "yes", + "description": "gender_segregated=yes is displayed as \"There is a separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=no with a fixed text, namely 'There is no separate, signposted area for men and women' 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" + "value": "no", + "description": "gender_segregated=no is displayed as \"There is no separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=yes with a fixed text, namely 'Free menstrual products are available to all visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "toilets:menstrual_products=yes is displayed as \"Free menstrual products are available to all visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=limited with a fixed text, namely 'Free menstrual products are available to some visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" + "value": "limited", + "description": "toilets:menstrual_products=limited is displayed as \"Free menstrual products are available to some visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=no with a fixed text, namely 'No free menstrual products are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "toilets:menstrual_products=no is displayed as \"No free menstrual products are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'toilets:menstrual_products:location' (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)" + "description": "Values of `toilets:menstrual_products:location` are shown with \"The menstrual products are located in {toilets:menstrual_products:location}\" and can be updated. The question is \"Where are the free menstrual products located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=female_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "female_toilet" + "value": "female_toilet", + "description": "toilets:menstrual_products:location=female_toilet is displayed as \"The free, menstrual products are located in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=male_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "male_toilet" + "value": "male_toilet", + "description": "toilets:menstrual_products:location=male_toilet is displayed as \"The free, menstrual products are located in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=wheelchair_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "toilets:menstrual_products:location=wheelchair_toilet is displayed as \"The free, menstrual products are located in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "changing_table=yes is displayed as \"A changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/baby.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "changing_table=no is displayed as \"No changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'OnWheels') (This is only shown if changing_table=yes)" + "description": "Values of `changing_table:location` are shown with \"A changing table is located at {changing_table:location}\" and can be updated. The question is \"Where is the changing table located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'A changing table is in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if changing_table=yes)", - "value": "female_toilet" + "value": "female_toilet", + "description": "changing_table:location=female_toilet is displayed as \"A changing table is in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'A changing table is in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if changing_table=yes)", - "value": "male_toilet" + "value": "male_toilet", + "description": "changing_table:location=male_toilet is displayed as \"A changing table is in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'A changing table is in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if changing_table=yes)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "changing_table:location=wheelchair_toilet is displayed as \"A changing table is in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' 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 'OnWheels') (This is only shown if changing_table=yes)", - "value": "dedicated_room" + "value": "dedicated_room", + "description": "changing_table:location=dedicated_room is displayed as \"A changing table is in a dedicated room\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { - "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": "supervised", + "value": "yes", + "description": "supervised=yes is displayed as \"There is a person supervising these toilets during (most of) the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { - "key": "toilets:handwashing", - "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets don't 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": "supervised", + "value": "interval", + "description": "supervised=interval is displayed as \"There is a person supervising these toilets, but they are present only during certain times of the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/themes/onwheels/toilet.svg" + }, + { + "key": "supervised", + "value": "no", + "description": "supervised=no is displayed as \"These toilets are not supervised\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:paper_supplied", - "description": "Layer 'Toilets' 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 'OnWheels') (This is only shown if toilets:position!=urinal)", - "value": "yes" + "value": "yes", + "description": "toilets:paper_supplied=yes is displayed as \"This toilet is equipped with toilet paper\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "toilets:paper_supplied", - "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" + "value": "no", + "description": "toilets:paper_supplied=no is displayed as \"You have to bring your own toilet paper to this toilet\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { - "key": "description", - "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'OnWheels')" + "key": "toilets:handwashing", + "value": "yes", + "description": "toilets:handwashing=yes is displayed as \"These toilets have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/themes/onwheels/toilet.svg" + }, + { + "key": "toilets:handwashing", + "value": "no", + "description": "toilets:handwashing=no is displayed as \"These toilets don't have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/themes/onwheels/toilet.svg" + }, + { + "key": "toilets:hands_drying", + "value": "electric_hand_dryer", + "description": "toilets:hands_drying=electric_hand_dryer is displayed as \"Electric hand dryers are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/themes/onwheels/toilet.svg" + }, + { + "key": "toilets:hands_drying", + "value": "paper_towel", + "description": "toilets:hands_drying=paper_towel is displayed as \"Paper towels are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/themes/onwheels/toilet.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel_cabinet", + "description": "toilets:hands_drying=towel_cabinet is displayed as \"A towel roll cabinet is available for drying hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/themes/onwheels/toilet.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel", + "description": "toilets:hands_drying=towel is displayed as \"A fabric towel available to dry your hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/themes/onwheels/toilet.svg" + }, + { + "key": "toilets:hands_drying", + "value": "no", + "description": "toilets:hands_drying=no is displayed as \"There are no hand drying facilities available.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/themes/onwheels/toilet.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Pharmacies showing features with this tag", - "value": "pharmacy" - }, - { - "key": "id", - "description": "Layer 'Pharmacies' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "pharmacy", + "description": "Features with this tag are displayed by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "name", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "opening_hours", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "opening_hours", - "description": "Layer 'Pharmacies' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'OnWheels')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:phone", - "description": "Layer 'Pharmacies' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "email", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:email", - "description": "Layer 'Pharmacies' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "operator:email", - "description": "Layer 'Pharmacies' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "website", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:website", - "description": "Layer 'Pharmacies' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `name` are shown with \"This pharmacy is called {name}\" and can be updated. The question is \"What is the name of the pharmacy?\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#name", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "addr:street", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Pharmacies, Doctors, Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#header", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "addr:unit", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Pharmacies, Doctors, Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#header", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "addr:housenumber", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layers Pharmacies, Doctors, Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#header", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "addr:housenumber", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `addr:housenumber` are shown with \"The house number is {addr:housenumber}\" and can be updated. The question is \"What is the number of this house?\" by layers Pharmacies, Doctors, Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#housenumber", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "nohousenumber", - "description": "Layer 'Pharmacies' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "nohousenumber=yes is displayed as \"This building has no house number\" by layers Pharmacies, Doctors, Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#housenumber", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "addr:street", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'OnWheels') (This is only shown if nohousenumber!~^(yes)$)" + "description": "Values of `addr:street` are shown with \"This address is in street {addr:street}\" and can be updated. The question is \"What street is this address located in?\" by layers Pharmacies, Doctors, Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#street", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "addr:unit", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `addr:unit` are shown with \"The unit number is {addr:unit}\" and can be updated. The question is \"What is the unit number or letter?\" by layers Pharmacies, Doctors, Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#unit", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "addr:unit", - "description": "Layer 'Pharmacies' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key addr:unit.", - "value": "" - }, - { - "key": "payment:cash", - "description": "Layer 'Pharmacies' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Pharmacies' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Pharmacies' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "description": "addr:unit= is displayed as \"No unit number\" by layers Pharmacies, Doctors, Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#unit", + "icon_url": "./assets/themes/onwheels/pharmacy.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Doctors showing features with this tag", - "value": "doctors" - }, - { - "key": "id", - "description": "Layer 'Doctors' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and 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 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and 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 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and 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 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and 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 'Doctors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "doctors", + "description": "Features with this tag are displayed by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "name", - "description": "Layer 'Doctors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `name` are shown with \"This doctors place is called {name}\" and can be updated. The question is \"What is the name of this doctors place?\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#name", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "opening_hours", - "description": "Layer 'Doctors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'OnWheels')" + "value": "\"by appointment\"", + "description": "opening_hours=\"by appointment\" is displayed as \"Only by appointment\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#opening_hours_by_appointment", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours=\"by appointment\" with a fixed text, namely 'Only by appointment' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "\"by appointment\"" - }, - { - "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "opening_hours", - "description": "Layer 'Doctors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'OnWheels')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Doctors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:phone", - "description": "Layer 'Doctors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "email", - "description": "Layer 'Doctors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:email", - "description": "Layer 'Doctors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "operator:email", - "description": "Layer 'Doctors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "website", - "description": "Layer 'Doctors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:website", - "description": "Layer 'Doctors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "addr:street", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" - }, - { - "key": "addr:unit", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Doctors' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Doctors' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'OnWheels') (This is only shown if nohousenumber!~^(yes)$)" - }, - { - "key": "addr:unit", - "description": "Layer 'Doctors' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "addr:unit", - "description": "Layer 'Doctors' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key addr:unit.", - "value": "" + "description": "opening_hours~^(\"by appointment\"|by appointment)$ is displayed as \"Only by appointment\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#opening_hours_by_appointment", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows and asks freeform values for key 'healthcare:speciality' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `healthcare:speciality` are shown with \"This doctor is specialized in {healthcare:speciality}\" and can be updated. The question is \"What is this doctor specialized in?\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=general with a fixed text, namely 'This is a general practitioner' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "general" + "value": "general", + "description": "healthcare:speciality=general is displayed as \"This is a general practitioner\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=gynaecology with a fixed text, namely 'This is a gynaecologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "gynaecology" + "value": "gynaecology", + "description": "healthcare:speciality=gynaecology is displayed as \"This is a gynaecologist\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=psychiatry with a fixed text, namely 'This is a psychiatrist' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "psychiatry" + "value": "psychiatry", + "description": "healthcare:speciality=psychiatry is displayed as \"This is a psychiatrist\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "healthcare:speciality", - "description": "Layer 'Doctors' shows healthcare:speciality=paediatrics with a fixed text, namely 'This is a paediatrician' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "paediatrics" + "value": "paediatrics", + "description": "healthcare:speciality=paediatrics is displayed as \"This is a paediatrician\" by layer Doctors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/doctors.md#specialty", + "icon_url": "./assets/themes/onwheels/doctor.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Hospitals showing features with this tag", - "value": "hospital" + "value": "hospital", + "description": "Features with this tag are displayed by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md", + "icon_url": "./assets/themes/onwheels/hospital.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Hospitals showing features with this tag", - "value": "clinic" - }, - { - "key": "id", - "description": "Layer 'Hospitals' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "clinic", + "description": "Features with this tag are displayed by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md", + "icon_url": "./assets/themes/onwheels/hospital.svg" }, { "key": "name", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `name` are shown with \"This hospital is called {name}\" and can be updated. The question is \"What is the name of this hospital?\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#name", + "icon_url": "./assets/themes/onwheels/hospital.svg" }, { "key": "amenity", - "description": "Layer 'Hospitals' shows amenity=clinic with a fixed text, namely 'This is a clinic - patients can not stay overnight' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "clinic" + "value": "clinic", + "description": "amenity=clinic is displayed as \"This is a clinic - patients can not stay overnight\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#inpatient", + "icon_url": "./assets/themes/onwheels/hospital.svg" }, { "key": "amenity", - "description": "Layer 'Hospitals' shows amenity=hospital with a fixed text, namely 'This is a hospital - patients can be admitted here for multiple days' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "hospital" - }, - { - "key": "phone", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:phone", - "description": "Layer 'Hospitals' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "email", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:email", - "description": "Layer 'Hospitals' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "operator:email", - "description": "Layer 'Hospitals' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "website", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:website", - "description": "Layer 'Hospitals' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "addr:street", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" - }, - { - "key": "addr:unit", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Hospitals' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'OnWheels')", - "value": "" - }, - { - "key": "addr:housenumber", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "nohousenumber", - "description": "Layer 'Hospitals' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "addr:street", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'OnWheels') (This is only shown if nohousenumber!~^(yes)$)" - }, - { - "key": "addr:unit", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "addr:unit", - "description": "Layer 'Hospitals' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key addr:unit.", - "value": "" + "value": "hospital", + "description": "amenity=hospital is displayed as \"This is a hospital - patients can be admitted here for multiple days\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#inpatient", + "icon_url": "./assets/themes/onwheels/hospital.svg" }, { "key": "opening_hours:visitors", - "description": "Layer 'Hospitals' shows and asks freeform values for key 'opening_hours:visitors' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#oh_visitor", + "icon_url": "./assets/themes/onwheels/hospital.svg" }, { "key": "amenity", - "description": "The MapComplete theme OnWheels has a layer Reception desks showing features with this tag", - "value": "reception_desk" - }, - { - "key": "id", - "description": "Layer 'Reception desks' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Reception desks allows to upload images and adds them under the 'panoramax'-tag (and 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 'Reception desks allows to upload images and adds them under the 'panoramax'-tag (and 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 'Reception desks allows to upload images and adds them under the 'panoramax'-tag (and 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 'Reception desks allows to upload images and adds them under the 'panoramax'-tag (and 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 'Reception desks allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Reception desks' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Reception desks' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Reception desks' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Reception desks' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Reception desks' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Reception desks' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "-1" + "value": "reception_desk", + "description": "Features with this tag are displayed by layer Reception desks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/reception_desk.md", + "icon_url": "./assets/layers/reception_desk/reception_desk.svg" }, { "key": "desk:height", - "description": "Layer 'Reception desks' shows and asks freeform values for key 'desk:height' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `desk:height` are shown with \"The height of the desk is {canonical(desk:height)}\" and can be updated. The question is \"What is the height of the reception desk? \" by layer Reception desks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/reception_desk.md#desk_height", + "icon_url": "./assets/layers/reception_desk/reception_desk.svg" }, { "key": "hearing_loop", - "description": "Layer 'Reception desks' shows hearing_loop=yes with a fixed text, namely 'This place has an audio induction loop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "hearing_loop=yes is displayed as \"This place has an audio induction loop\" by layers Reception desks, Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/reception_desk.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop.svg" }, { "key": "hearing_loop", - "description": "Layer 'Reception desks' shows hearing_loop=no with a fixed text, namely 'This place does not have an audio induction loop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "hearing_loop=no is displayed as \"This place does not have an audio induction loop\" by layers Reception desks, Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/reception_desk.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop_missing.svg" }, { "key": "highway", - "description": "The MapComplete theme OnWheels has a layer Elevator showing features with this tag", - "value": "elevator" - }, - { - "key": "id", - "description": "Layer 'Elevator' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and 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 'Elevator allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "elevator", + "description": "Features with this tag are displayed by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "level", - "description": "Layer 'Elevator' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Elevator' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'OnWheels') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Elevator' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Elevator' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Elevator' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Elevator' 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 'OnWheels') (This is only shown if repeat_on=)", - "value": "-1" + "description": "Values of `level` are shown with \"This elevator goes to floors {level}\" and can be updated. The question is \"What levels does this elevator go to?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#multilevels", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=broken with a fixed text, namely 'This elevator is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This elevator is broken\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "close:red" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=closed with a fixed text, namely 'This elevator is closed e.g. because renovation works are going on' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This elevator is closed e.g. because renovation works are going on\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "invalid:red" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status=ok with a fixed text, namely 'This elevator works' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "ok" + "value": "ok", + "description": "operational_status=ok is displayed as \"This elevator works\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "operational_status", - "description": "Layer 'Elevator' shows operational_status= with a fixed text, namely 'This elevator works' (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= is displayed as \"This elevator works\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#operational_status", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "door:width", - "description": "Layer 'Elevator' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `door:width` are shown with \"This elevator's doors have a width of {canonical(door:width)}\" and can be updated. The question is \"What is the width of this elevator's entrance?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#door_width", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "shape", - "description": "Layer 'Elevator' shows shape=rectangular with a fixed text, namely 'This elevator has a rectangular shape' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "rectangular" + "value": "rectangular", + "description": "shape=rectangular is displayed as \"This elevator has a rectangular shape\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_shape", + "icon_url": "./assets/svg/square.svg" }, { "key": "shape", - "description": "Layer 'Elevator' shows shape=circular with a fixed text, namely 'This elevator has a circular shape' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "circular" + "value": "circular", + "description": "shape=circular is displayed as \"This elevator has a circular shape\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_shape", + "icon_url": "./assets/svg/circle.svg" }, { "key": "width", - "description": "Layer 'Elevator' shows and asks freeform values for key 'width' (in the mapcomplete.org theme 'OnWheels') (This is only shown if shape= | shape=rectangular)" + "description": "Values of `width` are shown with \"This elevator has a width of {canonical(width)}\" and can be updated. The question is \"What is the width of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_width", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "length", - "description": "Layer 'Elevator' shows and asks freeform values for key 'length' (in the mapcomplete.org theme 'OnWheels') (This is only shown if shape= | shape=rectangular)" + "description": "Values of `length` are shown with \"This elevator has a depth of {canonical(length)}\" and can be updated. The question is \"What is the depth of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_depth", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "diameter", - "description": "Layer 'Elevator' shows and asks freeform values for key 'diameter' (in the mapcomplete.org theme 'OnWheels') (This is only shown if shape=circular)" + "description": "Values of `diameter` are shown with \"This elevator has a diameter of {canonical(diameter)}\" and can be updated. The question is \"What is the diameter of this elevator?\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#elevator_diameter", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { - "key": "hearing_loop", - "description": "Layer 'Elevator' shows hearing_loop=yes with a fixed text, namely 'This place has an audio induction loop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "key": "handrail", + "value": "yes", + "description": "handrail=yes is displayed as \"This elevator has a handrail in the cabin\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#handrail", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { - "key": "hearing_loop", - "description": "Layer 'Elevator' shows hearing_loop=no with a fixed text, namely 'This place does not have an audio induction loop' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "key": "handrail", + "value": "no", + "description": "handrail=no is displayed as \"This elevator does not have a handrail\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#handrail", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "tactile_writing:braille", - "description": "Layer 'Elevator' shows tactile_writing:braille=yes with a fixed text, namely 'This elevator has tactile writing in Braille' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "tactile_writing:braille=yes is displayed as \"This elevator has tactile writing in Braille\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#tactile_writing_available", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "tactile_writing:braille", - "description": "Layer 'Elevator' shows tactile_writing:braille=no with a fixed text, namely 'This elevator does not have tactile writing' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "tactile_writing:braille=no is displayed as \"This elevator does not have tactile writing\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#tactile_writing_available", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "speech_output", - "description": "Layer 'Elevator' shows speech_output=yes with a fixed text, namely 'This elevator has speech output' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "speech_output=yes is displayed as \"This elevator has speech output\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#speech_output_available", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "speech_output", - "description": "Layer 'Elevator' shows speech_output=no with a fixed text, namely 'This elevator does not have speech output' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "speech_output=no is displayed as \"This elevator does not have speech output\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#speech_output_available", + "icon_url": "./assets/themes/onwheels/elevator.svg" }, { "key": "tourism", - "description": "The MapComplete theme OnWheels has a layer Tourism accomodation showing features with this tag", - "value": "hotel" + "value": "hotel", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "tourism", - "description": "The MapComplete theme OnWheels has a layer Tourism accomodation showing features with this tag", - "value": "hostel" + "value": "hostel", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "tourism", - "description": "The MapComplete theme OnWheels has a layer Tourism accomodation showing features with this tag", - "value": "apartment" + "value": "apartment", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "tourism", - "description": "The MapComplete theme OnWheels has a layer Tourism accomodation showing features with this tag", - "value": "chalet" + "value": "chalet", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "tourism", - "description": "The MapComplete theme OnWheels has a layer Tourism accomodation showing features with this tag", - "value": "motel" + "value": "motel", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "tourism", - "description": "The MapComplete theme OnWheels has a layer Tourism accomodation showing features with this tag", - "value": "guest_house" + "value": "guest_house", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "tourism", - "description": "The MapComplete theme OnWheels has a layer Tourism accomodation showing features with this tag", - "value": "camp_site" - }, - { - "key": "id", - "description": "Layer 'Tourism accomodation' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "camp_site", + "description": "Features with this tag are displayed by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "name", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this {title()}?\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#name", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "group_only", - "description": "Layer 'Tourism accomodation' shows group_only=yes with a fixed text, namely 'This hostel is exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if tourism=hostel)", - "value": "yes" + "value": "yes", + "description": "group_only=yes is displayed as \"This hostel is exclusively for groups\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#group_only", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "group_only", - "description": "Layer 'Tourism accomodation' shows group_only=no with a fixed text, namely 'This hostel is not exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if tourism=hostel)", - "value": "no" + "value": "no", + "description": "group_only=no is displayed as \"This hostel is not exclusively for groups\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#group_only", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "brand", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"Is {title()} part of a bigger brand?\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#brand", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "nobrand", - "description": "Layer 'Tourism accomodation' shows nobrand=yes with a fixed text, namely 'Not part of a bigger brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "phone", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:phone", - "description": "Layer 'Tourism accomodation' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "email", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:email", - "description": "Layer 'Tourism accomodation' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "operator:email", - "description": "Layer 'Tourism accomodation' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "website", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:website", - "description": "Layer 'Tourism accomodation' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "wheelchair", - "description": "Layer 'Tourism accomodation' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Tourism accomodation' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Tourism accomodation' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Tourism accomodation' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "yes", + "description": "nobrand=yes is displayed as \"Not part of a bigger brand\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#brand", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Tourism accomodation' shows toilets:wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" + "value": "yes", + "description": "toilets:wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Tourism accomodation' shows toilets:wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" + "value": "no", + "description": "toilets:wheelchair=no is displayed as \"No wheelchair access\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Tourism accomodation' shows toilets:wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "designated" - }, - { - "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Tourism accomodation' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Tourism accomodation' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Tourism accomodation' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Tourism accomodation' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Tourism accomodation' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" - }, - { - "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "unleashed" - }, - { - "key": "dog", - "description": "Layer 'Tourism accomodation' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')", - "value": "outside" + "value": "designated", + "description": "toilets:wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Tourism accomodation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair", + "icon_url": "./assets/themes/onwheels/hotel.svg" }, { "key": "office", - "description": "The MapComplete theme OnWheels has a layer governments showing features with this tag", - "value": "government" - }, - { - "key": "id", - "description": "Layer 'governments' 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 'OnWheels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'governments allows to upload images and adds them under the 'panoramax'-tag (and 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 'governments allows to upload images and adds them under the 'panoramax'-tag (and 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 'governments allows to upload images and adds them under the 'panoramax'-tag (and 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 'governments allows to upload images and adds them under the 'panoramax'-tag (and 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 'governments allows to upload images and adds them under the 'panoramax'-tag (and 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": "phone", - "description": "Layer 'governments' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:phone", - "description": "Layer 'governments' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "email", - "description": "Layer 'governments' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:email", - "description": "Layer 'governments' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "operator:email", - "description": "Layer 'governments' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "website", - "description": "Layer 'governments' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'OnWheels')" - }, - { - "key": "contact:website", - "description": "Layer 'governments' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'OnWheels')" + "value": "government", + "description": "Features with this tag are displayed by layer governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/governments.md", + "icon_url": "./assets/themes/onwheels/government.svg" }, { "key": "name", - "description": "Layer 'governments' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'OnWheels')" + "description": "Values of `name` are shown with \"This Governmental Office is called {name}\" and can be updated. The question is \"What is the name of this Governmental Office?\" by layer governments", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/governments.md#name", + "icon_url": "./assets/themes/onwheels/government.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_openwindpowermap.json b/Docs/TagInfo/mapcomplete_openwindpowermap.json index 0ad3da0af1..863527b08c 100644 --- a/Docs/TagInfo/mapcomplete_openwindpowermap.json +++ b/Docs/TagInfo/mapcomplete_openwindpowermap.json @@ -7,61 +7,87 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/openwindpowermap/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "generator:source", - "description": "The MapComplete theme Wind power generators has a layer wind turbine showing features with this tag", - "value": "wind" + "value": "wind", + "description": "Features with this tag are displayed by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "id", - "description": "Layer 'wind turbine' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Wind power generators') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "generator:output:electricity", - "description": "Layer 'wind turbine' shows and asks freeform values for key 'generator:output:electricity' (in the mapcomplete.org theme 'Wind power generators')" + "description": "Values of `generator:output:electricity` are shown with \"The power output of this wind turbine is {generator:output:electricity}.\" and can be updated. The question is \"What is the power output of this wind turbine? (e.g. 2.3 MW)\" by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_output", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "operator", - "description": "Layer 'wind turbine' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Wind power generators')" + "description": "Values of `operator` are shown with \"This wind turbine is operated by {operator}.\" and can be updated. The question is \"Who operates this wind turbine?\" by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_operator", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "height", - "description": "Layer 'wind turbine' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Wind power generators')" + "description": "Values of `height` are shown with \"The total height (including rotor radius) of this wind turbine is {height} metres.\" and can be updated. The question is \"What is the total height of this wind turbine (including rotor radius), in metres?\" by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_height", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "rotor:diameter", - "description": "Layer 'wind turbine' shows and asks freeform values for key 'rotor:diameter' (in the mapcomplete.org theme 'Wind power generators')" + "description": "Values of `rotor:diameter` are shown with \"The rotor diameter of this wind turbine is {rotor:diameter} metres.\" and can be updated. The question is \"What is the rotor diameter of this wind turbine, in metres?\" by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_diameter", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "start_date", - "description": "Layer 'wind turbine' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Wind power generators')" + "description": "Values of `start_date` are shown with \"This wind turbine went into operation on/in {start_date}.\" and can be updated. The question is \"When did this wind turbine go into operation?\" by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_start_date", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "fixme", - "description": "Layer 'wind turbine' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Wind power generators')" + "description": "Values of `fixme` are shown with \"Extra information for OpenStreetMap experts: {fixme}\" and can be updated. The question is \"Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)\" by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#windturbine_fixme", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "image", - "description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "panoramax", - "description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "mapillary", - "description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "wikidata", - "description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" }, { "key": "wikipedia", - "description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images", + "icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_parkings.json b/Docs/TagInfo/mapcomplete_parkings.json index 8aac8b444d..f595537a3f 100644 --- a/Docs/TagInfo/mapcomplete_parkings.json +++ b/Docs/TagInfo/mapcomplete_parkings.json @@ -7,1954 +7,2582 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/parkings/parkings.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Parking has a layer Parking showing features with this tag", - "value": "parking" + "value": "parking", + "description": "Features with this tag are displayed by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "id", - "description": "Layer 'Parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Parking') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Parking, Parking Spaces, Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Parking, Parking Spaces, Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#images", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "panoramax", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Parking, Parking Spaces, Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#images", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "mapillary", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Parking, Parking Spaces, Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#images", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "wikidata", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Parking, Parking Spaces, Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#images", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "wikipedia", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Parking, Parking Spaces, Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#images", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Parking') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "location", - "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Parking') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' 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 'Parking') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' 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 'Parking') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' 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 'Parking') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=surface with a fixed text, namely 'This is a surface parking lot' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "surface" + "value": "surface", + "description": "parking=surface is displayed as \"This is a surface parking lot\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=street_side with a fixed text, namely 'This is a parking bay next to a street' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "street_side" + "value": "street_side", + "description": "parking=street_side is displayed as \"This is a parking bay next to a street\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=underground with a fixed text, namely 'This is an underground parking garage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "underground" + "value": "underground", + "description": "parking=underground is displayed as \"This is an underground parking garage\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=multi-storey with a fixed text, namely 'This is a multi-storey parking garage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "multi-storey" + "value": "multi-storey", + "description": "parking=multi-storey is displayed as \"This is a multi-storey parking garage\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=rooftop with a fixed text, namely 'This is a rooftop parking deck' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "rooftop" + "value": "rooftop", + "description": "parking=rooftop is displayed as \"This is a rooftop parking deck\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=lane with a fixed text, namely 'This is a lane for parking on the road' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "lane" + "value": "lane", + "description": "parking=lane is displayed as \"This is a lane for parking on the road\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=carports with a fixed text, namely 'This is parking covered by carports' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "carports" + "value": "carports", + "description": "parking=carports is displayed as \"This is parking covered by carports\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=garage_boxes with a fixed text, namely 'This a parking consisting of garage boxes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "garage_boxes" + "value": "garage_boxes", + "description": "parking=garage_boxes is displayed as \"This a parking consisting of garage boxes\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=layby with a fixed text, namely 'This is a parking on a layby' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "layby" + "value": "layby", + "description": "parking=layby is displayed as \"This is a parking on a layby\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=sheds with a fixed text, namely 'This is a parking consisting of sheds' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "sheds" + "value": "sheds", + "description": "parking=sheds is displayed as \"This is a parking consisting of sheds\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `capacity:disabled` are shown with \"There are {capacity:disabled} disabled parking spots\" and can be updated. The question is \"How many disabled parking spots are there at this parking?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=yes with a fixed text, namely 'There are disabled parking spots, but it is not known how many' (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "capacity:disabled=yes is displayed as \"There are disabled parking spots, but it is not known how many\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=no with a fixed text, namely 'There are no disabled parking spots' (in the mapcomplete.org theme 'Parking')", - "value": "no" + "value": "no", + "description": "capacity:disabled=no is displayed as \"There are no disabled parking spots\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=0 with a fixed text, namely 'There are no disabled parking spots' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "0" + "value": "0", + "description": "capacity:disabled=0 is displayed as \"There are no disabled parking spots\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity", - "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `capacity` are shown with \"There are {capacity} parking spots\" and can be updated. The question is \"How many parking spots are there at this parking?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Parking' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `maxstay` are shown with \"One can stay at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum amount of time one is allowed to stay here?\" by layers Parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#maxstay", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Parking' shows maxstay=unlimited with a fixed text, namely 'There is no limit to the amount of time one can stay here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "unlimited" + "value": "unlimited", + "description": "maxstay=unlimited is displayed as \"There is no limit to the amount of time one can stay here\" by layers Parking, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#maxstay", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "amenity", - "description": "The MapComplete theme Parking has a layer Parking Spaces showing features with this tag", - "value": "parking_space" - }, - { - "key": "id", - "description": "Layer 'Parking Spaces' 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 'Parking') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Parking Spaces allows to upload images and adds them under the 'panoramax'-tag (and 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 'Parking Spaces allows to upload images and adds them under the 'panoramax'-tag (and 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 'Parking Spaces allows to upload images and adds them under the 'panoramax'-tag (and 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 'Parking Spaces allows to upload images and adds them under the 'panoramax'-tag (and 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 'Parking Spaces allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "parking_space", + "description": "Features with this tag are displayed by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space= with a fixed text, namely 'This is a normal parking space.' (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key parking_space.", - "value": "" + "description": "parking_space= is displayed as \"This is a normal parking space.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=normal with a fixed text, namely 'This is a normal parking space.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "normal" + "value": "normal", + "description": "parking_space=normal is displayed as \"This is a normal parking space.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=disabled with a fixed text, namely 'This is a disabled parking space.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "disabled" + "value": "disabled", + "description": "parking_space=disabled is displayed as \"This is a disabled parking space.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=charging with a fixed text, namely 'This is parking space reserved for charging vehicles.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "charging" + "value": "charging", + "description": "parking_space=charging is displayed as \"This is parking space reserved for charging vehicles.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=delivery with a fixed text, namely 'This is parking space reserved for deliveries.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "delivery" + "value": "delivery", + "description": "parking_space=delivery is displayed as \"This is parking space reserved for deliveries.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=hgv with a fixed text, namely 'This is parking space reserved for heavy goods vehicles.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "hgv" + "value": "hgv", + "description": "parking_space=hgv is displayed as \"This is parking space reserved for heavy goods vehicles.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=caravan with a fixed text, namely 'This is parking space reserved for caravans or RVs.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "caravan" + "value": "caravan", + "description": "parking_space=caravan is displayed as \"This is parking space reserved for caravans or RVs.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=bus with a fixed text, namely 'This is parking space reserved for buses.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "bus" + "value": "bus", + "description": "parking_space=bus is displayed as \"This is parking space reserved for buses.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=motorcycle with a fixed text, namely 'This is parking space reserved for motorcycles.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "motorcycle" + "value": "motorcycle", + "description": "parking_space=motorcycle is displayed as \"This is parking space reserved for motorcycles.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=parent with a fixed text, namely 'This is a parking space reserved for parents with children.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "parent" + "value": "parent", + "description": "parking_space=parent is displayed as \"This is a parking space reserved for parents with children.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=staff with a fixed text, namely 'This is a parking space reserved for staff.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "staff" + "value": "staff", + "description": "parking_space=staff is displayed as \"This is a parking space reserved for staff.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=taxi with a fixed text, namely 'This is a parking space reserved for taxis.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "taxi" + "value": "taxi", + "description": "parking_space=taxi is displayed as \"This is a parking space reserved for taxis.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=trailer with a fixed text, namely 'This is a parking space reserved for vehicles towing a trailer.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "trailer" + "value": "trailer", + "description": "parking_space=trailer is displayed as \"This is a parking space reserved for vehicles towing a trailer.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "parking_space", - "description": "Layer 'Parking Spaces' shows parking_space=car_sharing with a fixed text, namely 'This is a parking space reserved for car sharing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "car_sharing" + "value": "car_sharing", + "description": "parking_space=car_sharing is displayed as \"This is a parking space reserved for car sharing.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#type", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "capacity", - "description": "Layer 'Parking Spaces' shows capacity=1 with a fixed text, namely 'This parking space has 1 space.' (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "capacity=1 is displayed as \"This parking space has 1 space.\" by layer Parking Spaces", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_spaces.md#capacity", + "icon_url": "./assets/layers/parking_spaces/parking_space.svg" }, { "key": "amenity", - "description": "The MapComplete theme Parking has a layer Parking Ticket Machines showing features with this tag", - "value": "vending_machine" + "value": "vending_machine", + "description": "Features with this tag are displayed by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md", + "icon_url": "./assets/layers/parking_ticket_machine/parking_tickets.svg" }, { "key": "vending", - "description": "The MapComplete theme Parking has a layer Parking Ticket Machines showing features with this tag", - "value": "parking_tickets" - }, - { - "key": "id", - "description": "Layer 'Parking Ticket Machines' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Parking') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Parking Ticket Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "parking_tickets", + "description": "Features with this tag are displayed by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md", + "icon_url": "./assets/layers/parking_ticket_machine/parking_tickets.svg" }, { "key": "payment:cash", - "description": "Layer 'Parking Ticket Machines' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Parking Ticket Machines' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Parking Ticket Machines' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Parking Ticket Machines, Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:coins", - "description": "Layer 'Parking Ticket Machines' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Parking Ticket Machines' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Parking Ticket Machines' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Parking Ticket Machines' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.01 EUR with a fixed text, namely '1 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.01 EUR" + "value": "0.01 EUR", + "description": "payment:coins:denominations=0.01 EUR is displayed as \"1 cent coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/1cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.02 EUR with a fixed text, namely '2 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.02 EUR" + "value": "0.02 EUR", + "description": "payment:coins:denominations=0.02 EUR is displayed as \"2 cent coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/2cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.05 EUR with a fixed text, namely '5 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 EUR" + "value": "0.05 EUR", + "description": "payment:coins:denominations=0.05 EUR is displayed as \"5 cent coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/5cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.10 EUR with a fixed text, namely '10 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 EUR" + "value": "0.10 EUR", + "description": "payment:coins:denominations=0.10 EUR is displayed as \"10 cent coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/10cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.20 EUR with a fixed text, namely '20 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 EUR" + "value": "0.20 EUR", + "description": "payment:coins:denominations=0.20 EUR is displayed as \"20 cent coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/20cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.50 EUR with a fixed text, namely '50 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 EUR" + "value": "0.50 EUR", + "description": "payment:coins:denominations=0.50 EUR is displayed as \"50 cent coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/50cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=1 EUR with a fixed text, namely '1 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 EUR" + "value": "1 EUR", + "description": "payment:coins:denominations=1 EUR is displayed as \"1 euro coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/1euro.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=2 EUR with a fixed text, namely '2 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 EUR" + "value": "2 EUR", + "description": "payment:coins:denominations=2 EUR is displayed as \"2 euro coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/2euro.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.05 CHF with a fixed text, namely '5 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 CHF" + "value": "0.05 CHF", + "description": "payment:coins:denominations=0.05 CHF is displayed as \"5 centimes coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/5rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.10 CHF with a fixed text, namely '10 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 CHF" + "value": "0.10 CHF", + "description": "payment:coins:denominations=0.10 CHF is displayed as \"10 centimes coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/10rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.20 CHF with a fixed text, namely '20 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 CHF" + "value": "0.20 CHF", + "description": "payment:coins:denominations=0.20 CHF is displayed as \"20 centimes coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/20rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=0.50 CHF with a fixed text, namely '½ franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 CHF" + "value": "0.50 CHF", + "description": "payment:coins:denominations=0.50 CHF is displayed as \"½ franc coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/50rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=1 CHF with a fixed text, namely '1 franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 CHF" + "value": "1 CHF", + "description": "payment:coins:denominations=1 CHF is displayed as \"1 franc coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/1fr-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=2 CHF with a fixed text, namely '2 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 CHF" + "value": "2 CHF", + "description": "payment:coins:denominations=2 CHF is displayed as \"2 francs coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/2fr-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:coins:denominations=5 CHF with a fixed text, namely '5 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 CHF" + "value": "5 CHF", + "description": "payment:coins:denominations=5 CHF is displayed as \"5 francs coins are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/5fr-2019-800px.png" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=5 EUR with a fixed text, namely '5 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 EUR" + "value": "5 EUR", + "description": "payment:notes:denominations=5 EUR is displayed as \"5 euro notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/5euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=10 EUR with a fixed text, namely '10 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "10 EUR" + "value": "10 EUR", + "description": "payment:notes:denominations=10 EUR is displayed as \"10 euro notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/10euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=20 EUR with a fixed text, namely '20 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "20 EUR" + "value": "20 EUR", + "description": "payment:notes:denominations=20 EUR is displayed as \"20 euro notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/20euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=50 EUR with a fixed text, namely '50 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "50 EUR" + "value": "50 EUR", + "description": "payment:notes:denominations=50 EUR is displayed as \"50 euro notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/50euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=100 EUR with a fixed text, namely '100 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "100 EUR" + "value": "100 EUR", + "description": "payment:notes:denominations=100 EUR is displayed as \"100 euro notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/100euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=200 EUR with a fixed text, namely '200 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "200 EUR" + "value": "200 EUR", + "description": "payment:notes:denominations=200 EUR is displayed as \"200 euro notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/200euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=500 EUR with a fixed text, namely '500 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "500 EUR" + "value": "500 EUR", + "description": "payment:notes:denominations=500 EUR is displayed as \"500 euro notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/500euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=10 CHF with a fixed text, namely '10 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "10 CHF" + "value": "10 CHF", + "description": "payment:notes:denominations=10 CHF is displayed as \"10 francs notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/10chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=20 CHF with a fixed text, namely '20 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "20 CHF" + "value": "20 CHF", + "description": "payment:notes:denominations=20 CHF is displayed as \"20 francs notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/20chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=50 CHF with a fixed text, namely '50 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "50 CHF" + "value": "50 CHF", + "description": "payment:notes:denominations=50 CHF is displayed as \"50 francs notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/50chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=100 CHF with a fixed text, namely '100 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "100 CHF" + "value": "100 CHF", + "description": "payment:notes:denominations=100 CHF is displayed as \"100 francs notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/100chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=200 CHF with a fixed text, namely '200 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "200 CHF" + "value": "200 CHF", + "description": "payment:notes:denominations=200 CHF is displayed as \"200 francs notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/200chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Parking Ticket Machines' shows payment:notes:denominations=1000 CHF with a fixed text, namely '1000 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1000 CHF" + "value": "1000 CHF", + "description": "payment:notes:denominations=1000 CHF is displayed as \"1000 francs notes are accepted\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/1000chf.svg" }, { "key": "ref", - "description": "Layer 'Parking Ticket Machines' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `ref` are shown with \"This parking ticket machine has the reference number {ref}\" and can be updated. The question is \"What is the reference number of this parking ticket machine?\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#ref", + "icon_url": "./assets/layers/parking_ticket_machine/parking_tickets.svg" }, { "key": "noref", - "description": "Layer 'Parking Ticket Machines' shows noref=yes with a fixed text, namely 'This parking ticket machine has no reference number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "noref=yes is displayed as \"This parking ticket machine has no reference number\" by layer Parking Ticket Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking_ticket_machine.md#ref", + "icon_url": "./assets/layers/parking_ticket_machine/parking_tickets.svg" }, { "key": "amenity", - "description": "The MapComplete theme Parking has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "The MapComplete theme Parking has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "The MapComplete theme Parking has a layer Charging stations showing features with this tag", - "value": "charging_station" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "The MapComplete theme Parking has a layer Charging stations showing features with this tag", - "value": "charging_station" - }, - { - "key": "id", - "description": "Layer 'Charging stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Parking') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Charging stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "charging_station", + "description": "Features with this tag are displayed by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "bicycle", - "description": "Layer 'Charging stations' shows bicycle=yes with a fixed text, namely 'Bicycles can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"Bicycles can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "motorcar", - "description": "Layer 'Charging stations' shows motorcar=yes with a fixed text, namely 'Cars can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "motorcar=yes is displayed as \"Cars can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "scooter", - "description": "Layer 'Charging stations' shows scooter=yes with a fixed text, namely 'Scooters can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "scooter=yes is displayed as \"Scooters can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "hgv", - "description": "Layer 'Charging stations' shows hgv=yes with a fixed text, namely 'Heavy good vehicles (such as trucks) can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "hgv=yes is displayed as \"Heavy good vehicles (such as trucks) can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "bus", - "description": "Layer 'Charging stations' shows bus=yes with a fixed text, namely 'Buses can be charged here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "bus=yes is displayed as \"Buses can be charged here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Type", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Who is allowed to use this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=yes with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Anyone can use this charging station (payment might be needed)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the mapcomplete.org theme 'Parking')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Anyone can use this charging station (payment might be needed)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=customers with a fixed text, namely 'Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=key with a fixed text, namely 'A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"A key must be requested to access this charging station
E.g. a charging station operated by hotel which is only usable by their guests, which receive a key from the reception to unlock the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, ...)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Not accessible to the general public (e.g. only accessible to the owners, employees, ...)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "access", - "description": "Layer 'Charging stations' shows access=permissive with a fixed text, namely 'This charging station is accessible to the public during certain hours or conditions. Restrictions might apply, but general use is allowed.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "permissive" + "value": "permissive", + "description": "access=permissive is displayed as \"This charging station is accessible to the public during certain hours or conditions. Restrictions might apply, but general use is allowed.\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#access", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "capacity", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `capacity` are shown with \"{capacity} vehicles can be charged here at the same time\" and can be updated. The question is \"How much vehicles can be charged here at the same time?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#capacity", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows socket:schuko=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:schuko=1 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows socket:schuko~.+ & socket:schuko!=1 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:schuko~.+ & socket:schuko!=1 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows socket:typee=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:typee=1 is displayed as \"European wall plug with ground pin (CEE7/4 type E)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows socket:typee~.+ & socket:typee!=1 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:typee~.+ & socket:typee!=1 is displayed as \"European wall plug with ground pin (CEE7/4 type E)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows socket:chademo=1 with a fixed text, namely 'Chademo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:chademo=1 is displayed as \"Chademo\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows socket:chademo~.+ & socket:chademo!=1 with a fixed text, namely 'Chademo' (in the mapcomplete.org theme 'Parking')" + "description": "socket:chademo~.+ & socket:chademo!=1 is displayed as \"Chademo\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows socket:type1_cable=1 with a fixed text, namely 'Type 1 with cable (J1772)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:type1_cable=1 is displayed as \"Type 1 with cable (J1772)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows socket:type1_cable~.+ & socket:type1_cable!=1 with a fixed text, namely 'Type 1 with cable (J1772)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:type1_cable~.+ & socket:type1_cable!=1 is displayed as \"Type 1 with cable (J1772)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows socket:type1=1 with a fixed text, namely 'Type 1 without cable (J1772)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:type1=1 is displayed as \"Type 1 without cable (J1772)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows socket:type1~.+ & socket:type1!=1 with a fixed text, namely 'Type 1 without cable (J1772)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:type1~.+ & socket:type1!=1 is displayed as \"Type 1 without cable (J1772)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows socket:type1_combo=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:type1_combo=1 is displayed as \"Type 1 CCS (aka Type 1 Combo)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows socket:type1_combo~.+ & socket:type1_combo!=1 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:type1_combo~.+ & socket:type1_combo!=1 is displayed as \"Type 1 CCS (aka Type 1 Combo)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger=1 with a fixed text, namely 'Tesla Supercharger' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:tesla_supercharger=1 is displayed as \"Tesla Supercharger\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger~.+ & socket:tesla_supercharger!=1 with a fixed text, namely 'Tesla Supercharger' (in the mapcomplete.org theme 'Parking')" + "description": "socket:tesla_supercharger~.+ & socket:tesla_supercharger!=1 is displayed as \"Tesla Supercharger\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows socket:type2=1 with a fixed text, namely 'Type 2 (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:type2=1 is displayed as \"Type 2 (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows socket:type2~.+ & socket:type2!=1 with a fixed text, namely 'Type 2 (mennekes)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:type2~.+ & socket:type2!=1 is displayed as \"Type 2 (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows socket:type2_combo=1 with a fixed text, namely 'Type 2 CCS (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:type2_combo=1 is displayed as \"Type 2 CCS (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows socket:type2_combo~.+ & socket:type2_combo!=1 with a fixed text, namely 'Type 2 CCS (mennekes)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:type2_combo~.+ & socket:type2_combo!=1 is displayed as \"Type 2 CCS (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows socket:type2_cable=1 with a fixed text, namely 'Type 2 with cable (mennekes)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:type2_cable=1 is displayed as \"Type 2 with cable (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows socket:type2_cable~.+ & socket:type2_cable!=1 with a fixed text, namely 'Type 2 with cable (mennekes)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:type2_cable~.+ & socket:type2_cable!=1 is displayed as \"Type 2 with cable (mennekes)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:tesla_supercharger_ccs=1 is displayed as \"Tesla Supercharger CCS (a branded type2_css)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=1 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=1 is displayed as \"Tesla Supercharger CCS (a branded type2_css)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla Supercharger (destination)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:tesla_destination=1 is displayed as \"Tesla Supercharger (destination)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country=us with a fixed text, namely 'Tesla Supercharger (destination)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country=us is displayed as \"Tesla Supercharger (destination)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:tesla_destination=1 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country!=us with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:tesla_destination~.+ & socket:tesla_destination!=1 & _country!=us is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows socket:USB-A=1 with a fixed text, namely 'USB to charge phones and small electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:USB-A=1 is displayed as \"USB to charge phones and small electronics\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows socket:USB-A~.+ & socket:USB-A!=1 with a fixed text, namely 'USB to charge phones and small electronics' (in the mapcomplete.org theme 'Parking')" + "description": "socket:USB-A~.+ & socket:USB-A!=1 is displayed as \"USB to charge phones and small electronics\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows socket:bosch_3pin=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:bosch_3pin=1 is displayed as \"Bosch Active Connect with 3 pins and cable\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows socket:bosch_3pin~.+ & socket:bosch_3pin!=1 with a fixed text, namely 'Bosch Active Connect with 3 pins and cable' (in the mapcomplete.org theme 'Parking')" + "description": "socket:bosch_3pin~.+ & socket:bosch_3pin!=1 is displayed as \"Bosch Active Connect with 3 pins and cable\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows socket:bosch_5pin=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:bosch_5pin=1 is displayed as \"Bosch Active Connect with 5 pins and cable\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows socket:bosch_5pin~.+ & socket:bosch_5pin!=1 with a fixed text, namely 'Bosch Active Connect with 5 pins and cable' (in the mapcomplete.org theme 'Parking')" + "description": "socket:bosch_5pin~.+ & socket:bosch_5pin!=1 is displayed as \"Bosch Active Connect with 5 pins and cable\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows socket:bs1363=1 with a fixed text, namely 'BS1363 (Type G)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:bs1363=1 is displayed as \"BS1363 (Type G)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows socket:bs1363~.+ & socket:bs1363!=1 with a fixed text, namely 'BS1363 (Type G)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:bs1363~.+ & socket:bs1363!=1 is displayed as \"BS1363 (Type G)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows socket:nema5_15=1 with a fixed text, namely 'NEMA 5-15 (Type B)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:nema5_15=1 is displayed as \"NEMA 5-15 (Type B)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows socket:nema5_15~.+ & socket:nema5_15!=1 with a fixed text, namely 'NEMA 5-15 (Type B)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:nema5_15~.+ & socket:nema5_15!=1 is displayed as \"NEMA 5-15 (Type B)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows socket:sev1011_t23=1 with a fixed text, namely 'SEV 1011 T23 (Type J)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:sev1011_t23=1 is displayed as \"SEV 1011 T23 (Type J)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows socket:sev1011_t23~.+ & socket:sev1011_t23!=1 with a fixed text, namely 'SEV 1011 T23 (Type J)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:sev1011_t23~.+ & socket:sev1011_t23!=1 is displayed as \"SEV 1011 T23 (Type J)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows socket:as3112=1 with a fixed text, namely 'AS3112 (Type I)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:as3112=1 is displayed as \"AS3112 (Type I)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows socket:as3112~.+ & socket:as3112!=1 with a fixed text, namely 'AS3112 (Type I)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:as3112~.+ & socket:as3112!=1 is displayed as \"AS3112 (Type I)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows socket:nema_5_20=1 with a fixed text, namely 'NEMA 5-20 (Type B)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "1" + "value": "1", + "description": "socket:nema_5_20=1 is displayed as \"NEMA 5-20 (Type B)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows socket:nema_5_20~.+ & socket:nema_5_20!=1 with a fixed text, namely 'NEMA 5-20 (Type B)' (in the mapcomplete.org theme 'Parking')" + "description": "socket:nema_5_20~.+ & socket:nema_5_20!=1 is displayed as \"NEMA 5-20 (Type B)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Available_charging_stations__generated_", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:schuko", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko` are shown with \"There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here\" and can be updated. The question is \"How much plugs of type Schuko wall plug without ground pin (CEE7/4 type F) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_schuko", + "icon_url": "./assets/layers/charging_station/CEE7_4F.svg" }, { "key": "socket:schuko:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:voltage` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:voltage", - "description": "Layer 'Charging stations' shows socket:schuko:voltage=230 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "230" + "value": "230", + "description": "socket:schuko:voltage=230 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:current` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}\" and can be updated. The question is \"What current do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:current", - "description": "Layer 'Charging stations' shows socket:schuko:current=16 with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "16" + "value": "16", + "description": "socket:schuko:current=16 is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:schuko~.+ & socket:schuko!=0)" + "description": "Values of `socket:schuko:output` are shown with \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}\" and can be updated. The question is \"What power output does a single plug of type Schuko wall plug without ground pin (CEE7/4 type F) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:schuko:output", - "description": "Layer 'Charging stations' shows socket:schuko:output=3.6 kW with a fixed text, namely 'Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:schuko~.+ & socket:schuko!=0)", - "value": "3.6 kW" + "value": "3.6 kW", + "description": "socket:schuko:output=3.6 kW is displayed as \"Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_schuko", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee` are shown with \"There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here\" and can be updated. The question is \"How much plugs of type European wall plug with ground pin (CEE7/4 type E) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_typee", + "icon_url": "./assets/layers/charging_station/TypeE.svg" }, { "key": "socket:typee:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:voltage` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}\" and can be updated. The question is \"What voltage do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:voltage", - "description": "Layer 'Charging stations' shows socket:typee:voltage=230 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "230" + "value": "230", + "description": "socket:typee:voltage=230 is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:current` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}\" and can be updated. The question is \"What current do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:current", - "description": "Layer 'Charging stations' shows socket:typee:current=16 with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "16" + "value": "16", + "description": "socket:typee:current=16 is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:typee~.+ & socket:typee!=0)" + "description": "Values of `socket:typee:output` are shown with \"European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}\" and can be updated. The question is \"What power output does a single plug of type European wall plug with ground pin (CEE7/4 type E) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=3 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "3 kW" + "value": "3 kW", + "description": "socket:typee:output=3 kW is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:typee:output", - "description": "Layer 'Charging stations' shows socket:typee:output=22 kW with a fixed text, namely 'European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:typee~.+ & socket:typee!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:typee:output=22 kW is displayed as \"European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_typee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo` are shown with \"There are {socket:chademo} plugs of type Chademo available here\" and can be updated. The question is \"How much plugs of type Chademo are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_chademo", + "icon_url": "./assets/layers/charging_station/Chademo_type4.svg" }, { "key": "socket:chademo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:voltage` are shown with \"Chademo outputs {canonical(socket:chademo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Chademo offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:voltage", - "description": "Layer 'Charging stations' shows socket:chademo:voltage=500 with a fixed text, namely 'Chademo outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "500" + "value": "500", + "description": "socket:chademo:voltage=500 is displayed as \"Chademo outputs 500 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:current` are shown with \"Chademo outputs at most {canonical(socket:chademo:current)}\" and can be updated. The question is \"What current do the plugs with Chademo offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:current", - "description": "Layer 'Charging stations' shows socket:chademo:current=120 with a fixed text, namely 'Chademo outputs at most 120 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "120" + "value": "120", + "description": "socket:chademo:current=120 is displayed as \"Chademo outputs at most 120 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:chademo~.+ & socket:chademo!=0)" + "description": "Values of `socket:chademo:output` are shown with \"Chademo outputs at most {canonical(socket:chademo:output)}\" and can be updated. The question is \"What power output does a single plug of type Chademo offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:chademo:output", - "description": "Layer 'Charging stations' shows socket:chademo:output=50 kW with a fixed text, namely 'Chademo outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:chademo~.+ & socket:chademo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:chademo:output=50 kW is displayed as \"Chademo outputs at most 50 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_chademo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable` are shown with \"There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here\" and can be updated. The question is \"How much plugs of type Type 1 with cable (J1772) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type1_cable", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:voltage` are shown with \"Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 with cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=200 with a fixed text, namely 'Type 1 with cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "200" + "value": "200", + "description": "socket:type1_cable:voltage=200 is displayed as \"Type 1 with cable (J1772) outputs 200 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type1_cable:voltage=240 with a fixed text, namely 'Type 1 with cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "240" + "value": "240", + "description": "socket:type1_cable:voltage=240 is displayed as \"Type 1 with cable (J1772) outputs 240 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:current` are shown with \"Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 with cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:current", - "description": "Layer 'Charging stations' shows socket:type1_cable:current=32 with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "32" + "value": "32", + "description": "socket:type1_cable:current=32 is displayed as \"Type 1 with cable (J1772) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)" + "description": "Values of `socket:type1_cable:output` are shown with \"Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 with cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=3.7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:type1_cable:output=3.7 kW is displayed as \"Type 1 with cable (J1772) outputs at most 3.7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_cable:output", - "description": "Layer 'Charging stations' shows socket:type1_cable:output=7 kW with a fixed text, namely 'Type 1 with cable (J1772) outputs at most 7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_cable~.+ & socket:type1_cable!=0)", - "value": "7 kW" + "value": "7 kW", + "description": "socket:type1_cable:output=7 kW is displayed as \"Type 1 with cable (J1772) outputs at most 7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1` are shown with \"There are {socket:type1} plugs of type Type 1 without cable (J1772) available here\" and can be updated. The question is \"How much plugs of type Type 1 without cable (J1772) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type1", + "icon_url": "./assets/layers/charging_station/Type1_J1772.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:voltage` are shown with \"Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 without cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows socket:type1:voltage=200 with a fixed text, namely 'Type 1 without cable (J1772) outputs 200 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "200" + "value": "200", + "description": "socket:type1:voltage=200 is displayed as \"Type 1 without cable (J1772) outputs 200 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:voltage", - "description": "Layer 'Charging stations' shows socket:type1:voltage=240 with a fixed text, namely 'Type 1 without cable (J1772) outputs 240 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "240" + "value": "240", + "description": "socket:type1:voltage=240 is displayed as \"Type 1 without cable (J1772) outputs 240 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:current` are shown with \"Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 without cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:current", - "description": "Layer 'Charging stations' shows socket:type1:current=32 with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "32" + "value": "32", + "description": "socket:type1:current=32 is displayed as \"Type 1 without cable (J1772) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)" + "description": "Values of `socket:type1:output` are shown with \"Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 without cable (J1772) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=3.7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:type1:output=3.7 kW is displayed as \"Type 1 without cable (J1772) outputs at most 3.7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=6.6 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 6.6 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "6.6 kW" + "value": "6.6 kW", + "description": "socket:type1:output=6.6 kW is displayed as \"Type 1 without cable (J1772) outputs at most 6.6 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "7 kW" + "value": "7 kW", + "description": "socket:type1:output=7 kW is displayed as \"Type 1 without cable (J1772) outputs at most 7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1:output", - "description": "Layer 'Charging stations' shows socket:type1:output=7.2 kW with a fixed text, namely 'Type 1 without cable (J1772) outputs at most 7.2 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1~.+ & socket:type1!=0)", - "value": "7.2 kW" + "value": "7.2 kW", + "description": "socket:type1:output=7.2 kW is displayed as \"Type 1 without cable (J1772) outputs at most 7.2 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo` are shown with \"There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here\" and can be updated. The question is \"How much plugs of type Type 1 CCS (aka Type 1 Combo) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type1_combo", + "icon_url": "./assets/layers/charging_station/Type1-ccs.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:voltage` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 1 CCS (aka Type 1 Combo) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=400 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "400" + "value": "400", + "description": "socket:type1_combo:voltage=400 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs 400 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type1_combo:voltage=1000 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs 1000 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "1000" + "value": "1000", + "description": "socket:type1_combo:voltage=1000 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs 1000 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:current` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}\" and can be updated. The question is \"What current do the plugs with Type 1 CCS (aka Type 1 Combo) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows socket:type1_combo:current=50 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "50" + "value": "50", + "description": "socket:type1_combo:current=50 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 50 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:current", - "description": "Layer 'Charging stations' shows socket:type1_combo:current=125 with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "125" + "value": "125", + "description": "socket:type1_combo:current=125 is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)" + "description": "Values of `socket:type1_combo:output` are shown with \"Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 1 CCS (aka Type 1 Combo) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=50 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:type1_combo:output=50 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=62.5 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "62.5 kW" + "value": "62.5 kW", + "description": "socket:type1_combo:output=62.5 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=150 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:type1_combo:output=150 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 150 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type1_combo:output", - "description": "Layer 'Charging stations' shows socket:type1_combo:output=350 kW with a fixed text, namely 'Type 1 CCS (aka Type 1 Combo) outputs at most 350 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type1_combo~.+ & socket:type1_combo!=0)", - "value": "350 kW" + "value": "350 kW", + "description": "socket:type1_combo:output=350 kW is displayed as \"Type 1 CCS (aka Type 1 Combo) outputs at most 350 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type1_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger` are shown with \"There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_tesla_supercharger", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_supercharger:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:voltage` are shown with \"Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:voltage=480 with a fixed text, namely 'Tesla Supercharger outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "480" + "value": "480", + "description": "socket:tesla_supercharger:voltage=480 is displayed as \"Tesla Supercharger outputs 480 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:current` are shown with \"Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=125 with a fixed text, namely 'Tesla Supercharger outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_supercharger:current=125 is displayed as \"Tesla Supercharger outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:current=350 with a fixed text, namely 'Tesla Supercharger outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_supercharger:current=350 is displayed as \"Tesla Supercharger outputs at most 350 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)" + "description": "Values of `socket:tesla_supercharger:output` are shown with \"Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=120 kW with a fixed text, namely 'Tesla Supercharger outputs at most 120 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "120 kW" + "value": "120 kW", + "description": "socket:tesla_supercharger:output=120 kW is displayed as \"Tesla Supercharger outputs at most 120 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=150 kW with a fixed text, namely 'Tesla Supercharger outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:tesla_supercharger:output=150 kW is displayed as \"Tesla Supercharger outputs at most 150 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger:output=250 kW with a fixed text, namely 'Tesla Supercharger outputs at most 250 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0)", - "value": "250 kW" + "value": "250 kW", + "description": "socket:tesla_supercharger:output=250 kW is displayed as \"Tesla Supercharger outputs at most 250 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2` are shown with \"There are {socket:type2} plugs of type Type 2 (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 (mennekes) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type2", + "icon_url": "./assets/layers/charging_station/Type2_socket.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:voltage` are shown with \"Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows socket:type2:voltage=230 with a fixed text, namely 'Type 2 (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "230" + "value": "230", + "description": "socket:type2:voltage=230 is displayed as \"Type 2 (mennekes) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:voltage", - "description": "Layer 'Charging stations' shows socket:type2:voltage=400 with a fixed text, namely 'Type 2 (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "400" + "value": "400", + "description": "socket:type2:voltage=400 is displayed as \"Type 2 (mennekes) outputs 400 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:current` are shown with \"Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows socket:type2:current=16 with a fixed text, namely 'Type 2 (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "16" + "value": "16", + "description": "socket:type2:current=16 is displayed as \"Type 2 (mennekes) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:current", - "description": "Layer 'Charging stations' shows socket:type2:current=32 with a fixed text, namely 'Type 2 (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "32" + "value": "32", + "description": "socket:type2:current=32 is displayed as \"Type 2 (mennekes) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)" + "description": "Values of `socket:type2:output` are shown with \"Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=11 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:type2:output=11 kW is displayed as \"Type 2 (mennekes) outputs at most 11 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2:output", - "description": "Layer 'Charging stations' shows socket:type2:output=22 kW with a fixed text, namely 'Type 2 (mennekes) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2~.+ & socket:type2!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:type2:output=22 kW is displayed as \"Type 2 (mennekes) outputs at most 22 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo` are shown with \"There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 CCS (mennekes) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type2_combo", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:voltage` are shown with \"Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 CCS (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=500 with a fixed text, namely 'Type 2 CCS (mennekes) outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "500" + "value": "500", + "description": "socket:type2_combo:voltage=500 is displayed as \"Type 2 CCS (mennekes) outputs 500 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:voltage", - "description": "Layer 'Charging stations' shows socket:type2_combo:voltage=920 with a fixed text, namely 'Type 2 CCS (mennekes) outputs 920 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "920" + "value": "920", + "description": "socket:type2_combo:voltage=920 is displayed as \"Type 2 CCS (mennekes) outputs 920 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:current` are shown with \"Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 CCS (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows socket:type2_combo:current=125 with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "125" + "value": "125", + "description": "socket:type2_combo:current=125 is displayed as \"Type 2 CCS (mennekes) outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:current", - "description": "Layer 'Charging stations' shows socket:type2_combo:current=350 with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "350" + "value": "350", + "description": "socket:type2_combo:current=350 is displayed as \"Type 2 CCS (mennekes) outputs at most 350 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)" + "description": "Values of `socket:type2_combo:output` are shown with \"Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 CCS (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_combo:output", - "description": "Layer 'Charging stations' shows socket:type2_combo:output=50 kW with a fixed text, namely 'Type 2 CCS (mennekes) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_combo~.+ & socket:type2_combo!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:type2_combo:output=50 kW is displayed as \"Type 2 CCS (mennekes) outputs at most 50 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_combo", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable` are shown with \"There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here\" and can be updated. The question is \"How much plugs of type Type 2 with cable (mennekes) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_type2_cable", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:voltage` are shown with \"Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Type 2 with cable (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=230 with a fixed text, namely 'Type 2 with cable (mennekes) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "230" + "value": "230", + "description": "socket:type2_cable:voltage=230 is displayed as \"Type 2 with cable (mennekes) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:voltage", - "description": "Layer 'Charging stations' shows socket:type2_cable:voltage=400 with a fixed text, namely 'Type 2 with cable (mennekes) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "400" + "value": "400", + "description": "socket:type2_cable:voltage=400 is displayed as \"Type 2 with cable (mennekes) outputs 400 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:current` are shown with \"Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}\" and can be updated. The question is \"What current do the plugs with Type 2 with cable (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows socket:type2_cable:current=16 with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "16" + "value": "16", + "description": "socket:type2_cable:current=16 is displayed as \"Type 2 with cable (mennekes) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:current", - "description": "Layer 'Charging stations' shows socket:type2_cable:current=32 with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "32" + "value": "32", + "description": "socket:type2_cable:current=32 is displayed as \"Type 2 with cable (mennekes) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)" + "description": "Values of `socket:type2_cable:output` are shown with \"Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}\" and can be updated. The question is \"What power output does a single plug of type Type 2 with cable (mennekes) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=11 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:type2_cable:output=11 kW is displayed as \"Type 2 with cable (mennekes) outputs at most 11 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:type2_cable:output", - "description": "Layer 'Charging stations' shows socket:type2_cable:output=22 kW with a fixed text, namely 'Type 2 with cable (mennekes) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:type2_cable~.+ & socket:type2_cable!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:type2_cable:output=22 kW is displayed as \"Type 2 with cable (mennekes) outputs at most 22 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_type2_cable", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs` are shown with \"There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger CCS (a branded type2_css) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_tesla_supercharger_ccs", + "icon_url": "./assets/layers/charging_station/Type2_CCS.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:voltage` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=500 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 500 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "500" + "value": "500", + "description": "socket:tesla_supercharger_ccs:voltage=500 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs 500 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:voltage=920 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs 920 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "920" + "value": "920", + "description": "socket:tesla_supercharger_ccs:voltage=920 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs 920 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:current` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=125 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_supercharger_ccs:current=125 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:current", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:current=350 with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_supercharger_ccs:current=350 is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)" + "description": "Values of `socket:tesla_supercharger_ccs:output` are shown with \"Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger CCS (a branded type2_css) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_supercharger_ccs:output", - "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs:output=50 kW with a fixed text, namely 'Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0)", - "value": "50 kW" + "value": "50 kW", + "description": "socket:tesla_supercharger_ccs:output=50 kW is displayed as \"Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_supercharger_ccs", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination` are shown with \"There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here\" and can be updated. The question is \"How much plugs of type Tesla Supercharger (destination) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_tesla_destination_us", + "icon_url": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:voltage` are shown with \"Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla Supercharger (destination) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=480 with a fixed text, namely 'Tesla Supercharger (destination) outputs 480 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "480" + "value": "480", + "description": "socket:tesla_destination:voltage=480 is displayed as \"Tesla Supercharger (destination) outputs 480 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:current` are shown with \"Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}\" and can be updated. The question is \"What current do the plugs with Tesla Supercharger (destination) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=125 with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 125 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "125" + "value": "125", + "description": "socket:tesla_destination:current=125 is displayed as \"Tesla Supercharger (destination) outputs at most 125 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=350 with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 350 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "350" + "value": "350", + "description": "socket:tesla_destination:current=350 is displayed as \"Tesla Supercharger (destination) outputs at most 350 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:output` are shown with \"Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla Supercharger (destination) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=120 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 120 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "120 kW" + "value": "120 kW", + "description": "socket:tesla_destination:output=120 kW is displayed as \"Tesla Supercharger (destination) outputs at most 120 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=150 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 150 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "150 kW" + "value": "150 kW", + "description": "socket:tesla_destination:output=150 kW is displayed as \"Tesla Supercharger (destination) outputs at most 150 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=250 kW with a fixed text, namely 'Tesla Supercharger (destination) outputs at most 250 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "250 kW" + "value": "250 kW", + "description": "socket:tesla_destination:output=250 kW is displayed as \"Tesla Supercharger (destination) outputs at most 250 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination_us", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination` are shown with \"There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here\" and can be updated. The question is \"How much plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_tesla_destination", + "icon_url": "./assets/layers/charging_station/Type2_tethered.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:voltage` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=230 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "230" + "value": "230", + "description": "socket:tesla_destination:voltage=230 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:voltage", - "description": "Layer 'Charging stations' shows socket:tesla_destination:voltage=400 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "400" + "value": "400", + "description": "socket:tesla_destination:voltage=400 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:current` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}\" and can be updated. The question is \"What current do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=16 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "16" + "value": "16", + "description": "socket:tesla_destination:current=16 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:current", - "description": "Layer 'Charging stations' shows socket:tesla_destination:current=32 with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "32" + "value": "32", + "description": "socket:tesla_destination:current=32 is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)" + "description": "Values of `socket:tesla_destination:output` are shown with \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}\" and can be updated. The question is \"What power output does a single plug of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=11 kW with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "11 kW" + "value": "11 kW", + "description": "socket:tesla_destination:output=11 kW is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:tesla_destination:output", - "description": "Layer 'Charging stations' shows socket:tesla_destination:output=22 kW with a fixed text, namely 'Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:tesla_destination~.+ & socket:tesla_destination!=0)", - "value": "22 kW" + "value": "22 kW", + "description": "socket:tesla_destination:output=22 kW is displayed as \"Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_tesla_destination", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A` are shown with \"There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here\" and can be updated. The question is \"How much plugs of type USB to charge phones and small electronics are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_USB_A", + "icon_url": "./assets/layers/charging_station/usb_port.svg" }, { "key": "socket:USB-A:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:voltage` are shown with \"USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}\" and can be updated. The question is \"What voltage do the plugs with USB to charge phones and small electronics offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:voltage", - "description": "Layer 'Charging stations' shows socket:USB-A:voltage=5 with a fixed text, namely 'USB to charge phones and small electronics outputs 5 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "5" + "value": "5", + "description": "socket:USB-A:voltage=5 is displayed as \"USB to charge phones and small electronics outputs 5 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:current` are shown with \"USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}\" and can be updated. The question is \"What current do the plugs with USB to charge phones and small electronics offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows socket:USB-A:current=1 with a fixed text, namely 'USB to charge phones and small electronics outputs at most 1 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "1" + "value": "1", + "description": "socket:USB-A:current=1 is displayed as \"USB to charge phones and small electronics outputs at most 1 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:current", - "description": "Layer 'Charging stations' shows socket:USB-A:current=2 with a fixed text, namely 'USB to charge phones and small electronics outputs at most 2 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "2" + "value": "2", + "description": "socket:USB-A:current=2 is displayed as \"USB to charge phones and small electronics outputs at most 2 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)" + "description": "Values of `socket:USB-A:output` are shown with \"USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}\" and can be updated. The question is \"What power output does a single plug of type USB to charge phones and small electronics offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=5W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 5W' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "5W" + "value": "5W", + "description": "socket:USB-A:output=5W is displayed as \"USB to charge phones and small electronics outputs at most 5W\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:USB-A:output", - "description": "Layer 'Charging stations' shows socket:USB-A:output=10W with a fixed text, namely 'USB to charge phones and small electronics outputs at most 10W' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:USB-A~.+ & socket:USB-A!=0)", - "value": "10W" + "value": "10W", + "description": "socket:USB-A:output=10W is displayed as \"USB to charge phones and small electronics outputs at most 10W\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_USB_A", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin` are shown with \"There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here\" and can be updated. The question is \"How much plugs of type Bosch Active Connect with 3 pins and cable are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_bosch_3pin", + "icon_url": "./assets/layers/charging_station/bosch-3pin.svg" }, { "key": "socket:bosch_3pin:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:voltage` are shown with \"Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Bosch Active Connect with 3 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:current` are shown with \"Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}\" and can be updated. The question is \"What current do the plugs with Bosch Active Connect with 3 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_3pin:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bosch_3pin~.+ & socket:bosch_3pin!=0)" + "description": "Values of `socket:bosch_3pin:output` are shown with \"Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}\" and can be updated. The question is \"What power output does a single plug of type Bosch Active Connect with 3 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_bosch_3pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin` are shown with \"There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here\" and can be updated. The question is \"How much plugs of type Bosch Active Connect with 5 pins and cable are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_bosch_5pin", + "icon_url": "./assets/layers/charging_station/bosch-5pin.svg" }, { "key": "socket:bosch_5pin:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:voltage` are shown with \"Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}\" and can be updated. The question is \"What voltage do the plugs with Bosch Active Connect with 5 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:current` are shown with \"Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}\" and can be updated. The question is \"What current do the plugs with Bosch Active Connect with 5 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bosch_5pin:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bosch_5pin~.+ & socket:bosch_5pin!=0)" + "description": "Values of `socket:bosch_5pin:output` are shown with \"Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}\" and can be updated. The question is \"What power output does a single plug of type Bosch Active Connect with 5 pins and cable offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_bosch_5pin", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363` are shown with \"There are {socket:bs1363} plugs of type BS1363 (Type G) available here\" and can be updated. The question is \"How much plugs of type BS1363 (Type G) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_bs1363", + "icon_url": "./assets/layers/charging_station/bs1363.svg" }, { "key": "socket:bs1363:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:voltage` are shown with \"BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}\" and can be updated. The question is \"What voltage do the plugs with BS1363 (Type G) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:voltage", - "description": "Layer 'Charging stations' shows socket:bs1363:voltage=230 with a fixed text, namely 'BS1363 (Type G) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "230" + "value": "230", + "description": "socket:bs1363:voltage=230 is displayed as \"BS1363 (Type G) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:current` are shown with \"BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}\" and can be updated. The question is \"What current do the plugs with BS1363 (Type G) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:current", - "description": "Layer 'Charging stations' shows socket:bs1363:current=13 with a fixed text, namely 'BS1363 (Type G) outputs at most 13 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "13" + "value": "13", + "description": "socket:bs1363:current=13 is displayed as \"BS1363 (Type G) outputs at most 13 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bs1363:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)" + "description": "Values of `socket:bs1363:output` are shown with \"BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}\" and can be updated. The question is \"What power output does a single plug of type BS1363 (Type G) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:bs1363:output", - "description": "Layer 'Charging stations' shows socket:bs1363:output=3kW with a fixed text, namely 'BS1363 (Type G) outputs at most 3kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:bs1363~.+ & socket:bs1363!=0)", - "value": "3kW" + "value": "3kW", + "description": "socket:bs1363:output=3kW is displayed as \"BS1363 (Type G) outputs at most 3kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_bs1363", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15` are shown with \"There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here\" and can be updated. The question is \"How much plugs of type NEMA 5-15 (Type B) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_nema5_15", + "icon_url": "./assets/layers/charging_station/nema-5-15.svg" }, { "key": "socket:nema5_15:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:voltage` are shown with \"NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}\" and can be updated. The question is \"What voltage do the plugs with NEMA 5-15 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:voltage", - "description": "Layer 'Charging stations' shows socket:nema5_15:voltage=120 with a fixed text, namely 'NEMA 5-15 (Type B) outputs 120 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "120" + "value": "120", + "description": "socket:nema5_15:voltage=120 is displayed as \"NEMA 5-15 (Type B) outputs 120 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:current` are shown with \"NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}\" and can be updated. The question is \"What current do the plugs with NEMA 5-15 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:current", - "description": "Layer 'Charging stations' shows socket:nema5_15:current=15 with a fixed text, namely 'NEMA 5-15 (Type B) outputs at most 15 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "15" + "value": "15", + "description": "socket:nema5_15:current=15 is displayed as \"NEMA 5-15 (Type B) outputs at most 15 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema5_15:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)" + "description": "Values of `socket:nema5_15:output` are shown with \"NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}\" and can be updated. The question is \"What power output does a single plug of type NEMA 5-15 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema5_15:output", - "description": "Layer 'Charging stations' shows socket:nema5_15:output=1.8 kW with a fixed text, namely 'NEMA 5-15 (Type B) outputs at most 1.8 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema5_15~.+ & socket:nema5_15!=0)", - "value": "1.8 kW" + "value": "1.8 kW", + "description": "socket:nema5_15:output=1.8 kW is displayed as \"NEMA 5-15 (Type B) outputs at most 1.8 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_nema5_15", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23` are shown with \"There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here\" and can be updated. The question is \"How much plugs of type SEV 1011 T23 (Type J) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_sev1011_t23", + "icon_url": "./assets/layers/charging_station/typej.svg" }, { "key": "socket:sev1011_t23:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:voltage` are shown with \"SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}\" and can be updated. The question is \"What voltage do the plugs with SEV 1011 T23 (Type J) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:voltage", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:voltage=230 with a fixed text, namely 'SEV 1011 T23 (Type J) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "230" + "value": "230", + "description": "socket:sev1011_t23:voltage=230 is displayed as \"SEV 1011 T23 (Type J) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:current` are shown with \"SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}\" and can be updated. The question is \"What current do the plugs with SEV 1011 T23 (Type J) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:current", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:current=16 with a fixed text, namely 'SEV 1011 T23 (Type J) outputs at most 16 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "16" + "value": "16", + "description": "socket:sev1011_t23:current=16 is displayed as \"SEV 1011 T23 (Type J) outputs at most 16 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:sev1011_t23:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)" + "description": "Values of `socket:sev1011_t23:output` are shown with \"SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}\" and can be updated. The question is \"What power output does a single plug of type SEV 1011 T23 (Type J) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:sev1011_t23:output", - "description": "Layer 'Charging stations' shows socket:sev1011_t23:output=3.7 kW with a fixed text, namely 'SEV 1011 T23 (Type J) outputs at most 3.7 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:sev1011_t23~.+ & socket:sev1011_t23!=0)", - "value": "3.7 kW" + "value": "3.7 kW", + "description": "socket:sev1011_t23:output=3.7 kW is displayed as \"SEV 1011 T23 (Type J) outputs at most 3.7 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_sev1011_t23", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112` are shown with \"There are {socket:as3112} plugs of type AS3112 (Type I) available here\" and can be updated. The question is \"How much plugs of type AS3112 (Type I) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_as3112", + "icon_url": "./assets/layers/charging_station/as3112.svg" }, { "key": "socket:as3112:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:voltage` are shown with \"AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}\" and can be updated. The question is \"What voltage do the plugs with AS3112 (Type I) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:voltage", - "description": "Layer 'Charging stations' shows socket:as3112:voltage=230 with a fixed text, namely 'AS3112 (Type I) outputs 230 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "230" + "value": "230", + "description": "socket:as3112:voltage=230 is displayed as \"AS3112 (Type I) outputs 230 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:current` are shown with \"AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}\" and can be updated. The question is \"What current do the plugs with AS3112 (Type I) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:current", - "description": "Layer 'Charging stations' shows socket:as3112:current=10 with a fixed text, namely 'AS3112 (Type I) outputs at most 10 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "10" + "value": "10", + "description": "socket:as3112:current=10 is displayed as \"AS3112 (Type I) outputs at most 10 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:as3112:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:as3112~.+ & socket:as3112!=0)" + "description": "Values of `socket:as3112:output` are shown with \"AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}\" and can be updated. The question is \"What power output does a single plug of type AS3112 (Type I) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:as3112:output", - "description": "Layer 'Charging stations' shows socket:as3112:output=2.3 kW with a fixed text, namely 'AS3112 (Type I) outputs at most 2.3 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:as3112~.+ & socket:as3112!=0)", - "value": "2.3 kW" + "value": "2.3 kW", + "description": "socket:as3112:output=2.3 kW is displayed as \"AS3112 (Type I) outputs at most 2.3 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_as3112", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20` are shown with \"There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here\" and can be updated. The question is \"How much plugs of type NEMA 5-20 (Type B) are available here?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#plugs_amount_socket_nema_5_20", + "icon_url": "./assets/layers/charging_station/nema-5-20.svg" }, { "key": "socket:nema_5_20:voltage", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:voltage' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:voltage` are shown with \"NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}\" and can be updated. The question is \"What voltage do the plugs with NEMA 5-20 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:voltage", - "description": "Layer 'Charging stations' shows socket:nema_5_20:voltage=120 with a fixed text, namely 'NEMA 5-20 (Type B) outputs 120 volt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "120" + "value": "120", + "description": "socket:nema_5_20:voltage=120 is displayed as \"NEMA 5-20 (Type B) outputs 120 volt\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#voltage_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:current", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:current' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:current` are shown with \"NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}\" and can be updated. The question is \"What current do the plugs with NEMA 5-20 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:current", - "description": "Layer 'Charging stations' shows socket:nema_5_20:current=20 with a fixed text, namely 'NEMA 5-20 (Type B) outputs at most 20 A' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "20" + "value": "20", + "description": "socket:nema_5_20:current=20 is displayed as \"NEMA 5-20 (Type B) outputs at most 20 A\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#current_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:output", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:nema_5_20:output' (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)" + "description": "Values of `socket:nema_5_20:output` are shown with \"NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}\" and can be updated. The question is \"What power output does a single plug of type NEMA 5-20 (Type B) offer?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "socket:nema_5_20:output", - "description": "Layer 'Charging stations' shows socket:nema_5_20:output=2.4 kW with a fixed text, namely 'NEMA 5-20 (Type B) outputs at most 2.4 kW' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if socket:nema_5_20~.+ & socket:nema_5_20!=0)", - "value": "2.4 kW" + "value": "2.4 kW", + "description": "socket:nema_5_20:output=2.4 kW is displayed as \"NEMA 5-20 (Type B) outputs at most 2.4 kW\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#power_output_socket_nema_5_20", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "opening_hours", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this charging station opened?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#OH", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "opening_hours", - "description": "Layer 'Charging stations' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#OH", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Charging stations' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Parking')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#OH", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "fee=no & fee:conditional= & charge= & authentication:none=yes is displayed as \"Free to use (without authenticating)\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows fee=no & fee:conditional= & charge= & authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "no" + "value": "no", + "description": "fee=no & fee:conditional= & charge= & authentication:none=no is displayed as \"Free to use, but one has to authenticate\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Parking')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "fee=yes & fee:conditional=no @ customers is displayed as \"Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "no @ customers" + "value": "no @ customers", + "description": "fee=yes & fee:conditional=no @ customers is displayed as \"Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional= with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "fee=yes & fee:conditional= is displayed as \"Paid use\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes & fee:conditional= with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key fee:conditional.", - "value": "" + "description": "fee=yes & fee:conditional= is displayed as \"Paid use\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "charge", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Parking') (This is only shown if fee=yes)" - }, - { - "key": "payment:cash", - "description": "Layer 'Charging stations' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=yes | charge~.+)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Charging stations' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=yes | charge~.+)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Charging stations' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "description": "Values of `charge` are shown with \"Using this charging station costs {charge}\" and can be updated. The question is \"How much does one have to pay to use this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#charge", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "payment:app", - "description": "Layer 'Charging stations' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:app=yes is displayed as \"Payment is done using a dedicated app\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/smartphone.svg" }, { "key": "payment:membership_card", - "description": "Layer 'Charging stations' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=yes | charge~.+)", - "value": "yes" + "value": "yes", + "description": "payment:membership_card=yes is displayed as \"Payment is done using a membership card\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/nfc_card.svg" }, { "key": "payment:app", - "description": "Layer 'Charging stations' shows payment:app~.+ & payment:app!=no & payment:app!=yes with a fixed text, namely 'Payment is done using a dedicated app' (in the mapcomplete.org theme 'Parking') (This is only shown if fee=yes | charge~.+)" + "description": "payment:app~.+ & payment:app!=no & payment:app!=yes is displayed as \"Payment is done using a dedicated app\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#payment_options", + "icon_url": "./assets/layers/questions/smartphone.svg" }, { "key": "payment:app", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'payment:app' (in the mapcomplete.org theme 'Parking') (This is only shown if payment:app~.+ & payment:app!=no)" + "description": "Values of `payment:app` are shown with \"Payment can be done using the app {payment:app}\" and can be updated. The question is \"What is the name of the app used for payment?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#app_name", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:membership_card", - "description": "Layer 'Charging stations' shows authentication:membership_card=yes with a fixed text, namely 'Authentication by a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:membership_card=yes is displayed as \"Authentication by a membership card\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:app", - "description": "Layer 'Charging stations' shows authentication:app=yes with a fixed text, namely 'Authentication by an app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:app=yes is displayed as \"Authentication by an app\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:phone_call", - "description": "Layer 'Charging stations' shows authentication:phone_call=yes with a fixed text, namely 'Authentication via phone call is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:phone_call=yes is displayed as \"Authentication via phone call is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:short_message", - "description": "Layer 'Charging stations' shows authentication:short_message=yes with a fixed text, namely 'Authentication via SMS is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:short_message=yes is displayed as \"Authentication via SMS is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:nfc", - "description": "Layer 'Charging stations' shows authentication:nfc=yes with a fixed text, namely 'Authentication via NFC is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:nfc=yes is displayed as \"Authentication via NFC is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:money_card", - "description": "Layer 'Charging stations' shows authentication:money_card=yes with a fixed text, namely 'Authentication via Money Card is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:money_card=yes is displayed as \"Authentication via Money Card is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:debit_card", - "description": "Layer 'Charging stations' shows authentication:debit_card=yes with a fixed text, namely 'Authentication via debit card is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:debit_card=yes is displayed as \"Authentication via debit card is available\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows authentication:none=yes with a fixed text, namely 'Charging here is (also) possible without authentication' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if fee=no | fee=)", - "value": "yes" + "value": "yes", + "description": "authentication:none=yes is displayed as \"Charging here is (also) possible without authentication\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Authentication", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "authentication:phone_call:number", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'authentication:phone_call:number' (in the mapcomplete.org theme 'Parking') (This is only shown if authentication:phone_call=yes | authentication:short_message=yes)" - }, - { - "key": "maxstay", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Parking') (This is only shown if motorcar=yes | hgv=yes | bus=yes)" - }, - { - "key": "maxstay", - "description": "Layer 'Charging stations' shows maxstay=unlimited with a fixed text, namely 'There is no limit to the amount of time one can stay here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if motorcar=yes | hgv=yes | bus=yes)", - "value": "unlimited" + "description": "Values of `authentication:phone_call:number` are shown with \"Authenticate by calling or SMS'ing to {authentication:phone_call:number}\" and can be updated. The question is \"What's the phone number for authentication call or SMS?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Auth_phone", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'network' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `network` are shown with \"Part of the network {network}\" and can be updated. The question is \"Is this charging station part of a network?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "no:network", - "description": "Layer 'Charging stations' shows no:network=yes with a fixed text, namely 'Not part of a bigger network, e.g. because the charging station is maintained by a local business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "yes" + "value": "yes", + "description": "no:network=yes is displayed as \"Not part of a bigger network, e.g. because the charging station is maintained by a local business\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=none with a fixed text, namely 'Not part of a bigger network' (in the mapcomplete.org theme 'Parking')", - "value": "none" + "value": "none", + "description": "network=none is displayed as \"Not part of a bigger network\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=AeroVironment with a fixed text, namely 'AeroVironment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "AeroVironment" + "value": "AeroVironment", + "description": "network=AeroVironment is displayed as \"AeroVironment\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Blink with a fixed text, namely 'Blink' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "Blink" + "value": "Blink", + "description": "network=Blink is displayed as \"Blink\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=EVgo with a fixed text, namely 'EVgo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "EVgo" + "value": "EVgo", + "description": "network=EVgo is displayed as \"EVgo\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Allego with a fixed text, namely 'Allego' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "Allego" + "value": "Allego", + "description": "network=Allego is displayed as \"Allego\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Blue Corner with a fixed text, namely 'Blue Corner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "Blue Corner" + "value": "Blue Corner", + "description": "network=Blue Corner is displayed as \"Blue Corner\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network=Tesla with a fixed text, namely 'Tesla' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "Tesla" + "value": "Tesla", + "description": "network=Tesla is displayed as \"Tesla\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Network", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operator", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Parking') (This is only shown if network=)" + "description": "Values of `operator` are shown with \"This charging station is operated by {operator}\" and can be updated. The question is \"Who is the operator of this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operator", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "network", - "description": "Layer 'Charging stations' shows network= with a fixed text, namely 'Actually, {operator} is the network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key network. (This is only shown if network=)", - "value": "" + "description": "network= is displayed as \"Actually, {operator} is the network\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operator", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "phone", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `phone` are shown with \"In case of problems, call {phone}\" and can be updated. The question is \"What number can one call if there is a problem with this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#phone", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "email", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Parking')" + "description": "Values of `email` are shown with \"In case of problems, send an email to {email}\" and can be updated. The question is \"What is the email address of the operator?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#email", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "website", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Parking')" - }, - { - "key": "level", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Parking') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Charging stations' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Parking') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Charging stations' 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 'Parking') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Charging stations' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Charging stations' 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 'Parking') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Charging stations' 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 'Parking') (This is only shown if repeat_on=)", - "value": "-1" + "description": "Values of `website` are shown with \"More info on {website}\" and can be updated. The question is \"What is the website where one can find more information about this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#website", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "ref", - "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Parking') (This is only shown if network~.+)" + "description": "Values of `ref` are shown with \"Reference number is {ref}\" and can be updated. The question is \"What is the reference number of this charging station?\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#ref", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status= & amenity=charging_station is displayed as \"This charging station works\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "broken" + "value": "broken", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity= & operational_status=broken & amenity=charging_station is displayed as \"This charging station is broken\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity=charging_station & construction:amenity= & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is planned here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key disused:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity=charging_station & disused:amenity= & operational_status= & amenity= is displayed as \"A charging station is constructed here\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key planned:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key construction:amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking')", - "value": "charging_station" + "value": "charging_station", + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key operational_status.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') Picking this answer will delete the key amenity.", - "value": "" + "description": "planned:amenity= & construction:amenity= & disused:amenity=charging_station & operational_status= & amenity= is displayed as \"This charging station has beed permanently disabled and is not in use anymore but is still visible\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Operational_status", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "parking:fee", - "description": "Layer 'Charging stations' shows parking:fee=no with a fixed text, namely 'No additional parking cost while charging' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if motor_vehicle=yes | hgv=yes | bus=yes | bicycle=no | bicycle=)", - "value": "no" + "value": "no", + "description": "parking:fee=no is displayed as \"No additional parking cost while charging\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Parking_fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" }, { "key": "parking:fee", - "description": "Layer 'Charging stations' shows parking:fee=yes with a fixed text, namely 'An additional parking fee should be paid while charging' and allows to pick this as a default answer (in the mapcomplete.org theme 'Parking') (This is only shown if motor_vehicle=yes | hgv=yes | bus=yes | bicycle=no | bicycle=)", - "value": "yes" + "value": "yes", + "description": "parking:fee=yes is displayed as \"An additional parking fee should be paid while charging\" by layer Charging stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/charging_station.md#Parking_fee", + "icon_url": "./assets/themes/charging_stations/plug.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_pets.json b/Docs/TagInfo/mapcomplete_pets.json index 497b8b52c8..6c73d36709 100644 --- a/Docs/TagInfo/mapcomplete_pets.json +++ b/Docs/TagInfo/mapcomplete_pets.json @@ -7,2532 +7,2909 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/dogpark/dog-park.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "leisure", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer dog parks showing features with this tag", - "value": "dog_park" + "value": "dog_park", + "description": "Features with this tag are displayed by layer dog parks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "leisure", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer dog parks showing features with this tag", - "value": "park" + "value": "park", + "description": "Features with this tag are displayed by layer dog parks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "dog", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer dog parks showing features with this tag", - "value": "unleashed" + "value": "unleashed", + "description": "Features with this tag are displayed by layers dog parks, Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "id", - "description": "Layer 'dog parks' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers dog parks, veterinary, Animal shelters, Dog toilets, Dog friendly eateries, Dog-friendly shops, Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'dog parks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers dog parks, Animal shelters, Dog toilets, Dog friendly eateries, Dog friendly eateries, Dog-friendly shops, Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#images", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "panoramax", - "description": "The layer 'dog parks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers dog parks, Animal shelters, Dog toilets, Dog friendly eateries, Dog friendly eateries, Dog-friendly shops, Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#images", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "mapillary", - "description": "The layer 'dog parks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers dog parks, Animal shelters, Dog toilets, Dog friendly eateries, Dog friendly eateries, Dog-friendly shops, Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#images", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "wikidata", - "description": "The layer 'dog parks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers dog parks, Animal shelters, Dog toilets, Dog friendly eateries, Dog friendly eateries, Dog-friendly shops, Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#images", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "wikipedia", - "description": "The layer 'dog parks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers dog parks, Animal shelters, Dog toilets, Dog friendly eateries, Dog friendly eateries, Dog-friendly shops, Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#images", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "name", - "description": "Layer 'dog parks' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `name` are shown with \"The name of this dog park is {name}\" and can be updated. The question is \"What is the name of this dog park?\" by layer dog parks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#Name", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "opening_hours", - "description": "Layer 'dog parks' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers dog parks, veterinary, Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#opening_hours_24_7", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "opening_hours", - "description": "Layer 'dog parks' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer dog parks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'dog parks' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers dog parks, veterinary, Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#opening_hours_24_7", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "website", - "description": "Layer 'dog parks' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers dog parks, veterinary, Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'dog parks' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers dog parks, veterinary, Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "barrier", - "description": "Layer 'dog parks' shows barrier=fence with a fixed text, namely 'This dogpark is fenced all around' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "fence" + "value": "fence", + "description": "barrier=fence is displayed as \"This dogpark is fenced all around\" by layer dog parks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#dogpark_fenced", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "barrier", - "description": "Layer 'dog parks' shows barrier=no with a fixed text, namely 'This dogpark is not fenced all around' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "barrier=no is displayed as \"This dogpark is not fenced all around\" by layer dog parks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#dogpark_fenced", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "small_dog", - "description": "Layer 'dog parks' shows small_dog=separate with a fixed text, namely 'Have separate area for puppies and small dogs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "separate" + "value": "separate", + "description": "small_dog=separate is displayed as \"Have separate area for puppies and small dogs\" by layer dog parks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#smalldogs", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "small_dog", - "description": "Layer 'dog parks' shows small_dog=shared with a fixed text, namely 'Does not have a separate area for puppies and small dogs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "shared" + "value": "shared", + "description": "small_dog=shared is displayed as \"Does not have a separate area for puppies and small dogs\" by layer dog parks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dogpark.md#smalldogs", + "icon_url": "./assets/layers/dogpark/dog-park.svg" }, { "key": "amenity", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer veterinary showing features with this tag", - "value": "veterinary" - }, - { - "key": "id", - "description": "Layer 'veterinary' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "website", - "description": "Layer 'veterinary' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:website", - "description": "Layer 'veterinary' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "value": "veterinary", + "description": "Features with this tag are displayed by layer veterinary", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/veterinary.md", + "icon_url": "./assets/layers/veterinary/vet.svg" }, { "key": "phone", - "description": "Layer 'veterinary' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers veterinary, Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/veterinary.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'veterinary' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "opening_hours", - "description": "Layer 'veterinary' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "opening_hours", - "description": "Layer 'veterinary' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "closed" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers veterinary, Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/veterinary.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "name", - "description": "Layer 'veterinary' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `name` are shown with \"The name of this veterinarian is {name}\" and can be updated. The question is \"What is the name of this veterinarian?\" by layer veterinary", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/veterinary.md#vetName", + "icon_url": "./assets/layers/veterinary/vet.svg" }, { "key": "amenity", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Animal shelters showing features with this tag", - "value": "animal_shelter" - }, - { - "key": "id", - "description": "Layer 'Animal shelters' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Animal shelters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Animal shelters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Animal shelters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Animal shelters allows to upload images and adds them under the 'panoramax'-tag (and 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 'Animal shelters allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "animal_shelter", + "description": "Features with this tag are displayed by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "name", - "description": "Layer 'Animal shelters' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "website", - "description": "Layer 'Animal shelters' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:website", - "description": "Layer 'Animal shelters' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "phone", - "description": "Layer 'Animal shelters' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:phone", - "description": "Layer 'Animal shelters' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `name` are shown with \"This animal shelter is named {name}\" and can be updated. The question is \"What is the name of this animal shelter?\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#2", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "email", - "description": "Layer 'Animal shelters' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Animal shelters' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Animal shelters' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Animal shelters, Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "purpose", - "description": "Layer 'Animal shelters' shows purpose=adoption with a fixed text, namely 'Animals are kept here until adopted by a new owner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "adoption" + "value": "adoption", + "description": "purpose=adoption is displayed as \"Animals are kept here until adopted by a new owner\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#6", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "purpose", - "description": "Layer 'Animal shelters' shows purpose=sanctuary with a fixed text, namely 'Animals are taken care of for the rest of their lives' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "sanctuary" + "value": "sanctuary", + "description": "purpose=sanctuary is displayed as \"Animals are taken care of for the rest of their lives\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#6", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "purpose", - "description": "Layer 'Animal shelters' shows purpose=release with a fixed text, namely 'Injured animals are rehabilitated here until they can be released in nature again ' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "release" + "value": "release", + "description": "purpose=release is displayed as \"Injured animals are rehabilitated here until they can be released in nature again \" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#6", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "opening_hours", - "description": "Layer 'Animal shelters' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "value": "\"by appointment\"", + "description": "opening_hours=\"by appointment\" is displayed as \"Only by appointment\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "opening_hours", - "description": "Layer 'Animal shelters' shows opening_hours=\"by appointment\" with a fixed text, namely 'Only by appointment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "\"by appointment\"" - }, - { - "key": "opening_hours", - "description": "Layer 'Animal shelters' shows opening_hours~^(\"by appointment\"|by appointment)$ with a fixed text, namely 'Only by appointment' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "opening_hours", - "description": "Layer 'Animal shelters' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "closed" + "description": "opening_hours~^(\"by appointment\"|by appointment)$ is displayed as \"Only by appointment\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#opening_hours_by_appointment", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "animal_shelter", - "description": "Layer 'Animal shelters' shows and asks freeform values for key 'animal_shelter' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `animal_shelter` are shown with \"{animal_shelter} is kept here\" and can be updated. The question is \"Which animals are accepted here?\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#boarded_animals", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "animal_shelter", - "description": "Layer 'Animal shelters' shows animal_shelter=dog with a fixed text, namely 'Dogs are kept here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "dog" + "value": "dog", + "description": "animal_shelter=dog is displayed as \"Dogs are kept here\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#boarded_animals", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "animal_shelter", - "description": "Layer 'Animal shelters' shows animal_shelter=cat with a fixed text, namely 'Cats are kept here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "cat" + "value": "cat", + "description": "animal_shelter=cat is displayed as \"Cats are kept here\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#boarded_animals", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "animal_shelter", - "description": "Layer 'Animal shelters' shows animal_shelter=horse with a fixed text, namely 'Horses are kept here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "horse" + "value": "horse", + "description": "animal_shelter=horse is displayed as \"Horses are kept here\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#boarded_animals", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "animal_shelter", - "description": "Layer 'Animal shelters' shows animal_shelter=bird with a fixed text, namely 'Birds are kept here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "bird" + "value": "bird", + "description": "animal_shelter=bird is displayed as \"Birds are kept here\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#boarded_animals", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "animal_shelter", - "description": "Layer 'Animal shelters' shows animal_shelter=wildlife with a fixed text, namely 'Wild animals are kept here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "wildlife" + "value": "wildlife", + "description": "animal_shelter=wildlife is displayed as \"Wild animals are kept here\" by layer Animal shelters", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/animal_shelter.md#boarded_animals", + "icon_url": "./assets/layers/animal_shelter/animal_shelter.svg" }, { "key": "amenity", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog toilets showing features with this tag", - "value": "dog_toilet" - }, - { - "key": "id", - "description": "Layer 'Dog toilets' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Dog toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog toilets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "dog_toilet", + "description": "Features with this tag are displayed by layer Dog toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dog_toilet.md", + "icon_url": "./assets/layers/dog_toilet/dog_toilet.svg" }, { "key": "barrier", - "description": "Layer 'Dog toilets' shows barrier=fence with a fixed text, namely 'There is a fence around this dog toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "fence" + "value": "fence", + "description": "barrier=fence is displayed as \"There is a fence around this dog toilet\" by layer Dog toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dog_toilet.md#barrier", + "icon_url": "./assets/layers/dog_toilet/dog_toilet.svg" }, { "key": "barrier", - "description": "Layer 'Dog toilets' shows barrier=hedge with a fixed text, namely 'There is a hedge around this dog toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "hedge" + "value": "hedge", + "description": "barrier=hedge is displayed as \"There is a hedge around this dog toilet\" by layer Dog toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dog_toilet.md#barrier", + "icon_url": "./assets/layers/dog_toilet/dog_toilet.svg" }, { "key": "barrier", - "description": "Layer 'Dog toilets' shows barrier=yes with a fixed text, namely 'There is a barrier around this dog toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "barrier=yes is displayed as \"There is a barrier around this dog toilet\" by layer Dog toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dog_toilet.md#barrier", + "icon_url": "./assets/layers/dog_toilet/dog_toilet.svg" }, { "key": "not:barrier", - "description": "Layer 'Dog toilets' shows not:barrier=fence with a fixed text, namely 'There is no barrier around this dog toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "fence" + "value": "fence", + "description": "not:barrier=fence is displayed as \"There is no barrier around this dog toilet\" by layer Dog toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dog_toilet.md#barrier", + "icon_url": "./assets/layers/dog_toilet/dog_toilet.svg" }, { "key": "amenity", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", - "value": "fast_food" + "value": "fast_food", + "description": "Features with this tag are displayed by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", - "value": "restaurant" + "value": "restaurant", + "description": "Features with this tag are displayed by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "dog", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", - "value": "unleashed" + "value": "leashed", + "description": "Features with this tag are displayed by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "dog", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", - "value": "leashed" - }, - { - "key": "dog", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog friendly eateries showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Dog friendly eateries' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "yes", + "description": "Features with this tag are displayed by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "name", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `name` are shown with \"The name of this business is {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Name", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Dog friendly eateries' shows amenity=fast_food with a fixed text, namely 'This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "fast_food" + "value": "fast_food", + "description": "amenity=fast_food is displayed as \"This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "amenity", - "description": "Layer 'Dog friendly eateries' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "restaurant" - }, - { - "key": "opening_hours", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "opening_hours", - "description": "Layer 'Dog friendly eateries' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:website", - "description": "Layer 'Dog friendly eateries' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "email", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:email", - "description": "Layer 'Dog friendly eateries' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "operator:email", - "description": "Layer 'Dog friendly eateries' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "phone", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:phone", - "description": "Layer 'Dog friendly eateries' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant, focused on creating a nice experience where one is served at the table\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "payment:cash", - "description": "Layer 'Dog friendly eateries' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Dog friendly eateries' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Dog friendly eateries' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "level", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "location", - "description": "Layer 'Dog friendly eateries' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Dog friendly eateries' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Dog friendly eateries' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Dog friendly eateries' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "level", - "description": "Layer 'Dog friendly eateries' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#single_level", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Dog friendly eateries' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Dog friendly eateries' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Dog friendly eateries' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wheelchair", - "description": "Layer 'Dog friendly eateries' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'cuisine' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `cuisine` are shown with \"This place mostly serves {cuisine}\" and can be updated. The question is \"What kind of food is served here?\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=pizza with a fixed text, namely 'Pizzeria' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "pizza" + "value": "pizza", + "description": "cuisine=pizza is displayed as \"Pizzeria\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=friture with a fixed text, namely 'Friture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "friture" + "value": "friture", + "description": "cuisine=friture is displayed as \"Friture\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=pasta with a fixed text, namely 'Serves mainly pasta' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "pasta" + "value": "pasta", + "description": "cuisine=pasta is displayed as \"Serves mainly pasta\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=kebab with a fixed text, namely 'Kebab shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "kebab" + "value": "kebab", + "description": "cuisine=kebab is displayed as \"Kebab shop\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=sandwich with a fixed text, namely 'Sandwich shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "sandwich" + "value": "sandwich", + "description": "cuisine=sandwich is displayed as \"Sandwich shop\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=burger with a fixed text, namely 'Burgersrestaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "burger" + "value": "burger", + "description": "cuisine=burger is displayed as \"Burgersrestaurant\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=sushi with a fixed text, namely 'Sushi restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "sushi" + "value": "sushi", + "description": "cuisine=sushi is displayed as \"Sushi restaurant\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=coffee with a fixed text, namely 'Coffeebar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "coffee" + "value": "coffee", + "description": "cuisine=coffee is displayed as \"Coffeebar\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=italian with a fixed text, namely 'Italian restaurant (which serves more than pasta and pizza)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "italian" + "value": "italian", + "description": "cuisine=italian is displayed as \"Italian restaurant (which serves more than pasta and pizza)\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=french with a fixed text, namely 'French restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "french" + "value": "french", + "description": "cuisine=french is displayed as \"French restaurant\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=chinese with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "chinese" + "value": "chinese", + "description": "cuisine=chinese is displayed as \"Chinese\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=greek with a fixed text, namely 'Greek' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "greek" + "value": "greek", + "description": "cuisine=greek is displayed as \"Greek\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=indian with a fixed text, namely 'Indian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "indian" + "value": "indian", + "description": "cuisine=indian is displayed as \"Indian\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=turkish with a fixed text, namely 'Turkish restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "turkish" + "value": "turkish", + "description": "cuisine=turkish is displayed as \"Turkish restaurant\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=thai with a fixed text, namely 'Thai restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "thai" + "value": "thai", + "description": "cuisine=thai is displayed as \"Thai restaurant\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=mexican with a fixed text, namely 'Mexican dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "mexican " + "value": "mexican ", + "description": "cuisine=mexican is displayed as \"Mexican dishes are served here\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=japanese with a fixed text, namely 'Japanese dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "japanese " + "value": "japanese ", + "description": "cuisine=japanese is displayed as \"Japanese dishes are served here\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=chicken with a fixed text, namely 'Chicken based dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "chicken " + "value": "chicken ", + "description": "cuisine=chicken is displayed as \"Chicken based dishes are served here\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "cuisine", - "description": "Layer 'Dog friendly eateries' shows cuisine=seafood with a fixed text, namely 'Seafood dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "seafood " + "value": "seafood ", + "description": "cuisine=seafood is displayed as \"Seafood dishes are served here\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "image", - "description": "The layer 'Dog friendly eateries shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "panoramax", - "description": "The layer 'Dog friendly eateries shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "mapillary", - "description": "The layer 'Dog friendly eateries shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikidata", - "description": "The layer 'Dog friendly eateries shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "wikipedia", - "description": "The layer 'Dog friendly eateries shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "image", - "description": "The layer 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog friendly eateries allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "website:menu", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'website:menu' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `website:menu` are shown with \"{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage is the menu published?\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#menu_website", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Dog friendly eateries' shows reservation=required with a fixed text, namely 'A reservation is required at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if takeaway!=only)", - "value": "required" + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Dog friendly eateries' shows reservation=recommended with a fixed text, namely 'A reservation is not required, but still recommended to make sure you get a table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if takeaway!=only)", - "value": "recommended" + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Dog friendly eateries' shows reservation=yes with a fixed text, namely 'Reservation is possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if takeaway!=only)", - "value": "yes" + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", - "description": "Layer 'Dog friendly eateries' shows reservation=no with a fixed text, namely 'Reservation is not possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if takeaway!=only)", - "value": "no" + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Dog friendly eateries' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "only" + "value": "only", + "description": "takeaway=only is displayed as \"This is a take-away only business\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Dog friendly eateries' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "takeaway=yes is displayed as \"Take-away is possible here\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "takeaway", - "description": "Layer 'Dog friendly eateries' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "takeaway=no is displayed as \"Take-away is not possible here\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Dog friendly eateries' shows delivery=yes with a fixed text, namely 'This business does home delivery (possibly via a third party)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "delivery=yes is displayed as \"This business does home delivery (possibly via a third party)\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "delivery", - "description": "Layer 'Dog friendly eateries' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "delivery=no is displayed as \"This business does not deliver at home\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Dog friendly eateries' shows drive_through=yes with a fixed text, namely 'This fast-food restaurant has a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if amenity=fast_food)", - "value": "yes" + "value": "yes", + "description": "drive_through=yes is displayed as \"This fast-food restaurant has a drive-through\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "drive_through", - "description": "Layer 'Dog friendly eateries' shows drive_through=no with a fixed text, namely 'This fast-food restaurant does not have a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if amenity=fast_food)", - "value": "no" + "value": "no", + "description": "drive_through=no is displayed as \"This fast-food restaurant does not have a drive-through\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'opening_hours:drive_through' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if drive_through=yes)" + "description": "Values of `opening_hours:drive_through` are shown with \"

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}\" and can be updated. The question is \"What are the opening hours of the drive-through?\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "opening_hours:drive_through", - "description": "Layer 'Dog friendly eateries' shows opening_hours:drive_through= with a fixed text, namely 'The opening hours of the drive-through are the same as the restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key opening_hours:drive_through. (This is only shown if drive_through=yes)", - "value": "" + "description": "opening_hours:drive_through= is displayed as \"The opening hours of the drive-through are the same as the restaurant\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian options are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg;cross_bottom_right:red" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Some vegetarian options are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian options are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"All dishes are vegetarian\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegetarian version, but this should be demanded' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegetarian=on_demand is displayed as \"Some dishes might be adapted to a vegetarian version, but this should be demanded\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan options available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"Some vegan options are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan options are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"All dishes are vegan\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegan version if asked for' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "on_demand" + "value": "on_demand", + "description": "diet:vegan=on_demand is displayed as \"Some dishes might be adapted to a vegan version if asked for\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Dog friendly eateries' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "diet:halal=no is displayed as \"There are no halal options available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Dog friendly eateries' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "limited" + "value": "limited", + "description": "diet:halal=limited is displayed as \"There is a small halal menu\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Dog friendly eateries' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "diet:halal=yes is displayed as \"There is a halal menu\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:halal", - "description": "Layer 'Dog friendly eateries' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "diet:halal=only is displayed as \"Only halal options are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Dog friendly eateries' shows organic=no with a fixed text, namely 'There are no organic options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"There are no organic options available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Dog friendly eateries' shows organic=yes with a fixed text, namely 'There is an organic menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"There is an organic menu\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Dog friendly eateries' shows organic=only with a fixed text, namely 'Only organic options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine!=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic options are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=only with a fixed text, namely 'Serves only vegetarian snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegetarian=only is displayed as \"Serves only vegetarian snacks and burgers\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian snacks are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Only a small selection of snacks are vegetarian\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegetarian", - "description": "Layer 'Dog friendly eateries' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian snacks are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=only with a fixed text, namely 'Serves only vegan snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"Serves only vegan snacks and burgers\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan snacks are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"A small selection of vegan snacks are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:vegan", - "description": "Layer 'Dog friendly eateries' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan snacks are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Dog friendly eateries' shows organic=yes with a fixed text, namely 'Organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"Organic snacks are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Dog friendly eateries' shows organic=no with a fixed text, namely 'No organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"No organic snacks are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "organic", - "description": "Layer 'Dog friendly eateries' shows organic=only with a fixed text, namely 'Only organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"Only organic snacks are available\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Dog friendly eateries' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "vegetable" + "value": "vegetable", + "description": "friture:oil=vegetable is displayed as \"The frying is done with vegetable oil\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "friture:oil", - "description": "Layer 'Dog friendly eateries' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "animal" + "value": "animal", + "description": "friture:oil=animal is displayed as \"The frying is done with animal oil\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Dog friendly eateries' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "yes" + "value": "yes", + "description": "reusable_packaging:accept=yes is displayed as \"You can bring your own containers to get your order, saving on single-use packaging material and thus waste\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Dog friendly eateries' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "no" + "value": "no", + "description": "reusable_packaging:accept=no is displayed as \"Bringing your own container is not allowed\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reusable_packaging:accept", - "description": "Layer 'Dog friendly eateries' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if cuisine=friture)", - "value": "only" + "value": "only", + "description": "reusable_packaging:accept=only is displayed as \"You must bring your own container to order here.\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Dog friendly eateries' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Dog friendly eateries' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Dog friendly eateries' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Dog friendly eateries' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Dog friendly eateries' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Dog friendly eateries' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Dog friendly eateries' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Dog friendly eateries' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Dog friendly eateries' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Dog friendly eateries' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Dog friendly eateries' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Dog friendly eateries' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "smoking", - "description": "Layer 'Dog friendly eateries' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _country!~^(al|be)$)", - "value": "yes" + "value": "yes", + "description": "smoking=yes is displayed as \"Smoking is allowed\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#smoking", + "icon_url": "./assets/layers/questions/smoking.svg" }, { "key": "smoking", - "description": "Layer 'Dog friendly eateries' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _country!~^(al|be)$)", - "value": "no" + "value": "no", + "description": "smoking=no is displayed as \"Smoking is not allowed\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#smoking", + "icon_url": "./assets/layers/questions/no_smoking.svg" }, { "key": "smoking", - "description": "Layer 'Dog friendly eateries' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _country!~^(al|be)$)", - "value": "outside" + "value": "outside", + "description": "smoking=outside is displayed as \"Smoking is allowed outside.\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#smoking", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Dog friendly eateries' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Dog friendly eateries' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "limited" + "value": "limited", + "description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Dog friendly eateries' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "ask" + "value": "ask", + "description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "service:electricity", - "description": "Layer 'Dog friendly eateries' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "outdoor_seating", - "description": "Layer 'Dog friendly eateries' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#seating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" }, { "key": "indoor_seating", - "description": "Layer 'Dog friendly eateries' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layer Dog friendly eateries", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#seating", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "dog", - "description": "Layer 'Dog friendly eateries' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Dog friendly eateries' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Dog friendly eateries' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Dog friendly eateries' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Dog friendly eateries' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "internet_access", - "description": "Layer 'Dog friendly eateries' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Dog friendly eateries' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Dog friendly eateries' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Dog friendly eateries' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Dog friendly eateries' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access", - "description": "Layer 'Dog friendly eateries' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Dog friendly eateries' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Dog friendly eateries' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Dog friendly eateries' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Dog friendly eateries' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Dog friendly eateries' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layers Dog friendly eateries, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "shop", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag" + "description": "Features with this tag are displayed by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "Features with this tag are displayed by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag", - "value": "key_cutter" - }, - { - "key": "dog", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag", - "value": "leashed" - }, - { - "key": "dog", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Dog-friendly shops showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Dog-friendly shops' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Dog-friendly shops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog-friendly shops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog-friendly shops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog-friendly shops allows to upload images and adds them under the 'panoramax'-tag (and 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 'Dog-friendly shops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "key_cutter", + "description": "Features with this tag are displayed by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Dog-friendly shops' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Dog-friendly shops' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Dog-friendly shops' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Dog-friendly shops' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Dog-friendly shops' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Dog-friendly shops' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "opening_hours", - "description": "Layer 'Dog-friendly shops' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:website", - "description": "Layer 'Dog-friendly shops' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "email", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:email", - "description": "Layer 'Dog-friendly shops' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "operator:email", - "description": "Layer 'Dog-friendly shops' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "phone", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "contact:phone", - "description": "Layer 'Dog-friendly shops' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" - }, - { - "key": "payment:cash", - "description": "Layer 'Dog-friendly shops' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Dog-friendly shops' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Dog-friendly shops' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" - }, - { - "key": "level", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Dog-friendly shops' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Dog-friendly shops' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Dog-friendly shops' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Dog-friendly shops' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Dog-friendly shops' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if repeat_on=)", - "value": "-1" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Dog-friendly shops' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Dog-friendly shops' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Dog-friendly shops' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Dog-friendly shops' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Dog-friendly shops' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Dog-friendly shops' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Dog-friendly shops' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Dog-friendly shops' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Dog-friendly shops' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Dog-friendly shops' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Dog-friendly shops' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Dog-friendly shops' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Dog-friendly shops' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Dog-friendly shops' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Dog-friendly shops' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" - }, - { - "key": "internet_access", - "description": "Layer 'Dog-friendly shops' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Dog-friendly shops' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Dog-friendly shops' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Dog-friendly shops' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Dog-friendly shops' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Dog-friendly shops' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Dog-friendly shops' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Dog-friendly shops' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Dog-friendly shops' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Dog-friendly shops' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Dog-friendly shops' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Dog-friendly shops' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Dog-friendly shops' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Dog-friendly shops' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Dog-friendly shops' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Dog-friendly shops' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Dog-friendly shops' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Dog-friendly shops' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Dog-friendly shops' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Dog-friendly shops' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Dog-friendly shops' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Dog-friendly shops' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Dog-friendly shops' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Dog-friendly shops' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Dog-friendly shops' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Dog-friendly shops' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Dog-friendly shops' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Dog-friendly shops' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Dog-friendly shops' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "unleashed" - }, - { - "key": "dog", - "description": "Layer 'Dog-friendly shops' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "outside" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "description", - "description": "Layer 'Dog-friendly shops' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shop_dog_friendly.md#description", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "amenity", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Waste baskets with excrement bag dispensers showing features with this tag", - "value": "waste_basket" + "value": "waste_basket", + "description": "Features with this tag are displayed by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "The MapComplete theme Veterinarians, dog parks and other pet-amenities has a layer Waste baskets with excrement bag dispensers showing features with this tag", - "value": "excrement_bags" - }, - { - "key": "id", - "description": "Layer 'Waste baskets with excrement bag dispensers' 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 'Veterinarians, dog parks and other pet-amenities') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Waste baskets with excrement bag dispensers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Waste baskets with excrement bag dispensers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Waste baskets with excrement bag dispensers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Waste baskets with excrement bag dispensers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Waste baskets with excrement bag dispensers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "excrement_bags", + "description": "Features with this tag are displayed by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste= with a fixed text, namely 'A waste basket for general waste' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key waste.", - "value": "" + "description": "waste= is displayed as \"A waste basket for general waste\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste=trash with a fixed text, namely 'A waste basket for general waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "trash" + "value": "trash", + "description": "waste=trash is displayed as \"A waste basket for general waste\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste=dog_excrement with a fixed text, namely 'A waste basket for dog excrements' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "dog_excrement" + "value": "dog_excrement", + "description": "waste=dog_excrement is displayed as \"A waste basket for dog excrements\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste=cigarettes with a fixed text, namely 'A waste basket for cigarettes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "cigarettes" + "value": "cigarettes", + "description": "waste=cigarettes is displayed as \"A waste basket for cigarettes\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste=drugs with a fixed text, namely 'A waste basket for drugs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "drugs" + "value": "drugs", + "description": "waste=drugs is displayed as \"A waste basket for drugs\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste=sharps with a fixed text, namely 'A waste basket for needles and other sharp objects' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "sharps" + "value": "sharps", + "description": "waste=sharps is displayed as \"A waste basket for needles and other sharp objects\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste=plastic with a fixed text, namely 'A waste basket for plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "plastic" + "value": "plastic", + "description": "waste=plastic is displayed as \"A waste basket for plastic\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste=pmd with a fixed text, namely 'A waste basket for plastic packaging, metal packaging and drink cartons (PMD)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "pmd" + "value": "pmd", + "description": "waste=pmd is displayed as \"A waste basket for plastic packaging, metal packaging and drink cartons (PMD)\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows waste=paper with a fixed text, namely 'A waste basket for paper' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities')", - "value": "paper" + "value": "paper", + "description": "waste=paper is displayed as \"A waste basket for paper\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "excrement_bags" + "value": "excrement_bags", + "description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "not:vending", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key not:vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "not:vending", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "excrement_bags" + "value": "excrement_bags", + "description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste baskets with excrement bag dispensers' shows vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' (in the mapcomplete.org theme 'Veterinarians, dog parks and other pet-amenities') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste baskets with excrement bag dispensers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket_dogs.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_playgrounds.json b/Docs/TagInfo/mapcomplete_playgrounds.json index 1425703e87..43e5905ab7 100644 --- a/Docs/TagInfo/mapcomplete_playgrounds.json +++ b/Docs/TagInfo/mapcomplete_playgrounds.json @@ -7,1223 +7,1521 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/playgrounds/playground.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "leisure", - "description": "The MapComplete theme Playgrounds has a layer Playgrounds showing features with this tag", - "value": "playground" + "value": "playground", + "description": "Features with this tag are displayed by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "id", - "description": "Layer 'Playgrounds' 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 'Playgrounds') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Playgrounds, Playground equipment, Benches, Picnic tables, Waste Basket, Toilets, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Playgrounds allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Playgrounds, Playground equipment, Benches, Picnic tables, Waste Basket, Toilets, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#images", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "panoramax", - "description": "The layer 'Playgrounds allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Playgrounds, Playground equipment, Benches, Picnic tables, Waste Basket, Toilets, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#images", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "mapillary", - "description": "The layer 'Playgrounds allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Playgrounds, Playground equipment, Benches, Picnic tables, Waste Basket, Toilets, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#images", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "wikidata", - "description": "The layer 'Playgrounds allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Playgrounds, Playground equipment, Benches, Picnic tables, Waste Basket, Toilets, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#images", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "wikipedia", - "description": "The layer 'Playgrounds allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Playgrounds, Playground equipment, Benches, Picnic tables, Waste Basket, Toilets, BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#images", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "fee", - "description": "Layer 'Playgrounds' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layers Playgrounds, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#fee", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "fee", - "description": "Layer 'Playgrounds' shows fee=yes with a fixed text, namely 'Paid playground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"Paid playground\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#fee", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `surface` are shown with \"The surface is {surface}\" and can be updated. The question is \"Which is the surface of this playground?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=grass with a fixed text, namely 'The surface is grass' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "grass" + "value": "grass", + "description": "surface=grass is displayed as \"The surface is grass\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=sand with a fixed text, namely 'The surface is sand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "sand" + "value": "sand", + "description": "surface=sand is displayed as \"The surface is sand\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=woodchips with a fixed text, namely 'The surface consist of woodchips' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "woodchips" + "value": "woodchips", + "description": "surface=woodchips is displayed as \"The surface consist of woodchips\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=paving_stones with a fixed text, namely 'The surface is paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "paving_stones" + "value": "paving_stones", + "description": "surface=paving_stones is displayed as \"The surface is paving stones\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=asphalt with a fixed text, namely 'The surface is asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "asphalt" + "value": "asphalt", + "description": "surface=asphalt is displayed as \"The surface is asphalt\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=concrete with a fixed text, namely 'The surface is concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "concrete" + "value": "concrete", + "description": "surface=concrete is displayed as \"The surface is concrete\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=unpaved with a fixed text, namely 'The surface is unpaved' (in the mapcomplete.org theme 'Playgrounds')", - "value": "unpaved" + "value": "unpaved", + "description": "surface=unpaved is displayed as \"The surface is unpaved\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=paved with a fixed text, namely 'The surface is paved' (in the mapcomplete.org theme 'Playgrounds')", - "value": "paved" + "value": "paved", + "description": "surface=paved is displayed as \"The surface is paved\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=tartan with a fixed text, namely 'The surface is tartan - a synthetic, springy surface typically seen on athletic pistes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "tartan" + "value": "tartan", + "description": "surface=tartan is displayed as \"The surface is tartan - a synthetic, springy surface typically seen on athletic pistes\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=rubber with a fixed text, namely 'The surface is made from rubber, such as rubber tiles, rubber mulch or a big rubber area' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "rubber" + "value": "rubber", + "description": "surface=rubber is displayed as \"The surface is made from rubber, such as rubber tiles, rubber mulch or a big rubber area\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "surface", - "description": "Layer 'Playgrounds' shows surface=fine_gravel with a fixed text, namely 'The surface is fine gravel (less then 2 cm per stone)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "surface=fine_gravel is displayed as \"The surface is fine gravel (less then 2 cm per stone)\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_surface", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "lit", - "description": "Layer 'Playgrounds' shows lit=yes with a fixed text, namely 'This playground is lit at night' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This playground is lit at night\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_lit", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "lit", - "description": "Layer 'Playgrounds' shows lit=no with a fixed text, namely 'This playground is not lit at night' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "lit=no is displayed as \"This playground is not lit at night\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_lit", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "min_age", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'min_age' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `min_age` are shown with \"Accessible to kids older than {min_age} years\" and can be updated. The question is \"What is the minimum age required to access this playground?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_min_age", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "max_age", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'max_age' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `max_age` are shown with \"Accessible to kids of at most {max_age}\" and can be updated. The question is \"What is the maximum age allowed to access this playground?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_max_age", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "operator", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who operates this playground?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_operator", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "access", - "description": "Layer 'Playgrounds' shows access=yes with a fixed text, namely 'Accessible to the general public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Accessible to the general public\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "fee", - "description": "Layer 'Playgrounds' shows fee=yes with a fixed text, namely 'This is a paid playground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"This is a paid playground\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "access", - "description": "Layer 'Playgrounds' shows access=customers with a fixed text, namely 'Only accessible for clients of the operating business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only accessible for clients of the operating business\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "access", - "description": "Layer 'Playgrounds' shows access=students with a fixed text, namely 'Only accessible to students of the school' (in the mapcomplete.org theme 'Playgrounds')", - "value": "students" + "value": "students", + "description": "access=students is displayed as \"Only accessible to students of the school\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "access", - "description": "Layer 'Playgrounds' shows access=private with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Not accessible\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "leisure", - "description": "Layer 'Playgrounds' shows leisure=schoolyard with a fixed text, namely 'This is a schoolyard - an outdoor area where the pupils can play during their breaks; but it is not accessible to the general public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "schoolyard" + "value": "schoolyard", + "description": "leisure=schoolyard is displayed as \"This is a schoolyard - an outdoor area where the pupils can play during their breaks; but it is not accessible to the general public\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "website", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Playgrounds' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Playgrounds')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of the playground maintainer?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_email", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "phone", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `phone` are shown with \"{phone}\" and can be updated. The question is \"What is the phone number of the playground maintainer?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_phone", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "wheelchair", - "description": "Layer 'Playgrounds' shows wheelchair=yes with a fixed text, namely 'Completely accessible for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"Completely accessible for wheelchair users\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#Playground_wheelchair", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "wheelchair", - "description": "Layer 'Playgrounds' shows wheelchair=limited with a fixed text, namely 'Limited accessibility for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"Limited accessibility for wheelchair users\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#Playground_wheelchair", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "wheelchair", - "description": "Layer 'Playgrounds' shows wheelchair=no with a fixed text, namely 'Not accessible for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"Not accessible for wheelchair users\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#Playground_wheelchair", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "opening_hours", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `opening_hours` are shown with \"{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this playground accessible?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_opening_hours", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "opening_hours", - "description": "Layer 'Playgrounds' shows opening_hours=sunrise-sunset with a fixed text, namely 'Accessible from sunrise till sunset' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "sunrise-sunset" + "value": "sunrise-sunset", + "description": "opening_hours=sunrise-sunset is displayed as \"Accessible from sunrise till sunset\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_opening_hours", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "opening_hours", - "description": "Layer 'Playgrounds' shows opening_hours=24/7 with a fixed text, namely 'Always accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"Always accessible\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#playground_opening_hours", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "check_date", - "description": "Layer 'Playgrounds' shows and asks freeform values for key 'check_date' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `check_date` are shown with \"This object was last checked on {check_date}\" and can be updated. The question is \"When was this object last checked?\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#check_date", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "check_date", - "description": "Layer 'Playgrounds' shows check_date= with a fixed text, namely 'This object was last checked today' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key check_date.", - "value": "" + "description": "check_date= is displayed as \"This object was last checked today\" by layer Playgrounds", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground.md#check_date", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "playground", - "description": "The MapComplete theme Playgrounds has a layer Playground equipment showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Playground equipment' 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 'Playgrounds') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Playground equipment allows to upload images and adds them under the 'panoramax'-tag (and 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 'Playground equipment allows to upload images and adds them under the 'panoramax'-tag (and 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 'Playground equipment allows to upload images and adds them under the 'panoramax'-tag (and 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 'Playground equipment allows to upload images and adds them under the 'panoramax'-tag (and 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 'Playground equipment allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Features with this tag are displayed by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows and asks freeform values for key 'playground' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `playground` are shown with \"This is a {playground}\" and can be updated. The question is \"What kind of device is this?\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=swing with a fixed text, namely 'This is a swing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "swing" + "value": "swing", + "description": "playground=swing is displayed as \"This is a swing\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=structure with a fixed text, namely 'This is a structure consisting of several connected playground devices' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "structure" + "value": "structure", + "description": "playground=structure is displayed as \"This is a structure consisting of several connected playground devices\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/SunwardCohousingPlayStructure2005.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=slide with a fixed text, namely 'This is a slide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "slide" + "value": "slide", + "description": "playground=slide is displayed as \"This is a slide\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=sandpit with a fixed text, namely 'This is a sand pit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "sandpit" + "value": "sandpit", + "description": "playground=sandpit is displayed as \"This is a sand pit\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Zandbakw.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=springy with a fixed text, namely 'This is a spring rider' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "springy" + "value": "springy", + "description": "playground=springy is displayed as \"This is a spring rider\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=climbingframe with a fixed text, namely 'This is a climbing frame' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "climbingframe" + "value": "climbingframe", + "description": "playground=climbingframe is displayed as \"This is a climbing frame\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/DeimosXL1.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=seesaw with a fixed text, namely 'This is a seesaw' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "seesaw" + "value": "seesaw", + "description": "playground=seesaw is displayed as \"This is a seesaw\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Seesaw-aa.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=playhouse with a fixed text, namely 'This is a playhouse' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "playhouse" + "value": "playhouse", + "description": "playground=playhouse is displayed as \"This is a playhouse\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Playhouse.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=roundabout with a fixed text, namely 'This is a roundabout' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "roundabout" + "value": "roundabout", + "description": "playground=roundabout is displayed as \"This is a roundabout\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Manually_powered_carousel_on_a_playground_in_Saint-Petersburg.JPG" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=basketswing with a fixed text, namely 'This is a basket swing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "basketswing" + "value": "basketswing", + "description": "playground=basketswing is displayed as \"This is a basket swing\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Playground_swing_03.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=zipwire with a fixed text, namely 'This is a zip wire' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "zipwire" + "value": "zipwire", + "description": "playground=zipwire is displayed as \"This is a zip wire\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=horizontal_bar with a fixed text, namely 'This is a horizontal bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "horizontal_bar" + "value": "horizontal_bar", + "description": "playground=horizontal_bar is displayed as \"This is a horizontal bar\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Rekstok.JPG" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=hopscotch with a fixed text, namely 'This is a hopscotch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "hopscotch" + "value": "hopscotch", + "description": "playground=hopscotch is displayed as \"This is a hopscotch\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Hinkelbaan_tegels.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=splash_pad with a fixed text, namely 'This is a splash pad' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "splash_pad" + "value": "splash_pad", + "description": "playground=splash_pad is displayed as \"This is a splash pad\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Urbeach-high-park-splashpad.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=climbingwall with a fixed text, namely 'This is a climbing wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "climbingwall" + "value": "climbingwall", + "description": "playground=climbingwall is displayed as \"This is a climbing wall\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Playground_climbingwall.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=map with a fixed text, namely 'This is a map' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "map" + "value": "map", + "description": "playground=map is displayed as \"This is a map\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Playground_Map,_Washington_Elementary.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=bridge with a fixed text, namely 'This is a bridge (either as a standalone device or as part of a larger structure)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "bridge" + "value": "bridge", + "description": "playground=bridge is displayed as \"This is a bridge (either as a standalone device or as part of a larger structure)\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Playground_in_Muchall_Park,_Wolverhampton_-_geograph.org.uk_-_2735437.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=cushion with a fixed text, namely 'This is a bouncy cushion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "cushion" + "value": "cushion", + "description": "playground=cushion is displayed as \"This is a bouncy cushion\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Hupfkissen.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=activitypanel with a fixed text, namely 'This is an activity panel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "activitypanel" + "value": "activitypanel", + "description": "playground=activitypanel is displayed as \"This is an activity panel\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Szwedy_-_plac_zabaw_-_kotko_i_krzyzyk.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=teenshelter with a fixed text, namely 'This is a teen shelter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "teenshelter" + "value": "teenshelter", + "description": "playground=teenshelter is displayed as \"This is a teen shelter\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Teen_shelter_near_former_coastguard_lookout,_Watchet_-_geograph.org.uk_-_1714960.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=funnel_ball with a fixed text, namely 'This is a funnel used to play with funnel ball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "funnel_ball" + "value": "funnel_ball", + "description": "playground=funnel_ball is displayed as \"This is a funnel used to play with funnel ball\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Funnel_ball.jpg" }, { "key": "playground", - "description": "Layer 'Playground equipment' shows playground=spinning_circle with a fixed text, namely 'This is a spinning circle' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "spinning_circle" + "value": "spinning_circle", + "description": "playground=spinning_circle is displayed as \"This is a spinning circle\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#type", + "icon_url": "./assets/layers/playground_equipment/Spinning_circle.jpg" }, { "key": "wheelchair", - "description": "Layer 'Playground equipment' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#wheelchair_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "wheelchair", - "description": "Layer 'Playground equipment' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#wheelchair_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "wheelchair", - "description": "Layer 'Playground equipment' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#wheelchair_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "wheelchair", - "description": "Layer 'Playground equipment' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Playground equipment", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/playground_equipment.md#wheelchair_access", + "icon_url": "./assets/themes/playgrounds/playground.svg" }, { "key": "amenity", - "description": "The MapComplete theme Playgrounds has a layer Benches showing features with this tag", - "value": "bench" - }, - { - "key": "id", - "description": "Layer 'Benches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bench", + "description": "Features with this tag are displayed by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "two_sided", - "description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'This bench does have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "backrest=yes is displayed as \"This bench does have a backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/one_sided.svg" }, { "key": "backrest", - "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'This bench does not have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "backrest=no is displayed as \"This bench does not have a backrest\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest", + "icon_url": "./assets/layers/bench/no_backrest.svg" }, { "key": "armrest", - "description": "Layer 'Benches' shows armrest=yes with a fixed text, namely 'This bench does have one or more armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_armrest", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "armrest", - "description": "Layer 'Benches' shows armrest=no with a fixed text, namely 'This bench does not have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "armrest=no is displayed as \"This bench does not have any armrests\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_armrest", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "seats", - "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_seats", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "seats:separated", - "description": "Layer 'Benches' shows seats:separated=no with a fixed text, namely 'This bench does not have separated seats' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_seats", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=wood with a fixed text, namely 'The seating is made from wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"The seating is made from wood\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=metal with a fixed text, namely 'The seating is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"The seating is made from metal\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=stone with a fixed text, namely 'The seating is made from stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "stone" + "value": "stone", + "description": "material=stone is displayed as \"The seating is made from stone\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=concrete with a fixed text, namely 'The seating is made from concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"The seating is made from concrete\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=plastic with a fixed text, namely 'The seating is made from plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"The seating is made from plastic\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "material", - "description": "Layer 'Benches' shows material=steel with a fixed text, namely 'The seating is made from steel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "steel" + "value": "steel", + "description": "material=steel is displayed as \"The seating is made from steel\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "direction", - "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if two_sided!=yes)" + "description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_direction", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "brown" + "value": "brown", + "description": "colour=brown is displayed as \"Colour: brown\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "green" + "value": "green", + "description": "colour=green is displayed as \"Colour: green\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "gray" + "value": "gray", + "description": "colour=gray is displayed as \"Colour: gray\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "white" + "value": "white", + "description": "colour=white is displayed as \"Colour: white\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "red" + "value": "red", + "description": "colour=red is displayed as \"Colour: red\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "black" + "value": "black", + "description": "colour=black is displayed as \"Colour: black\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "blue" + "value": "blue", + "description": "colour=blue is displayed as \"Colour: blue\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "colour", - "description": "Layer 'Benches' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yellow" + "value": "yellow", + "description": "colour=yellow is displayed as \"Colour: yellow\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "survey:date", - "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_survey_date", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "survey:date", - "description": "Layer 'Benches' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key survey:date.", - "value": "" + "description": "survey:date= is displayed as \"Surveyed today!\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_survey_date", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "inscription", - "description": "Layer 'Benches' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `inscription` are shown with \"This bench has the following inscription:

{inscription}

\" and can be updated. The question is \"Does this bench have an inscription?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:inscription", - "description": "Layer 'Benches' shows not:inscription=yes with a fixed text, namely 'This bench does not have an inscription' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "inscription", - "description": "Layer 'Benches' shows inscription= with a fixed text, namely 'This bench probably does not not have an inscription' (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key inscription.", - "value": "" + "description": "inscription= is displayed as \"This bench probably does not not have an inscription\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism=artwork with a fixed text, namely 'This bench has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "artwork" + "value": "artwork", + "description": "tourism=artwork is displayed as \"This bench has an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:tourism:artwork", - "description": "Layer 'Benches' shows not:tourism:artwork=yes with a fixed text, namely 'This bench does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This bench does not have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "tourism", - "description": "Layer 'Benches' shows tourism= with a fixed text, namely 'This bench probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key tourism.", - "value": "" + "description": "tourism= is displayed as \"This bench probably doesn't have an integrated artwork\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "historic", - "description": "Layer 'Benches' shows historic=memorial with a fixed text, namely 'This bench is a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" + "value": "memorial", + "description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "" + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "not:historic", - "description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a not a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))", - "value": "memorial" + "value": "memorial", + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)" + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "architecture" + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "mural" + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "painting" + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "sculpture" + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "statue" + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "bust" + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "stone" + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "installation" + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "graffiti" + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "relief" + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "azulejo" + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "tilework" + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artwork_type", - "description": "Layer 'Benches' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)", - "value": "woodcarving" + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artist:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)" + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artist_wikidata", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "artist_name", - "description": "Layer 'Benches' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)" + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artist_name", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "website", - "description": "Layer 'Benches' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)" + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_website", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "subject:wikidata", - "description": "Layer 'Benches' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if tourism=artwork)" + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Benches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_subject", + "icon_url": "./assets/layers/bench/bench.svg" }, { "key": "leisure", - "description": "The MapComplete theme Playgrounds has a layer Picnic tables showing features with this tag", - "value": "picnic_table" - }, - { - "key": "id", - "description": "Layer 'Picnic tables' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "picnic_table", + "description": "Features with this tag are displayed by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "location", - "description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "level", - "description": "Layer 'Picnic tables' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Picnic tables, Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `material` are shown with \"This picnic table is made of {material}\" and can be updated. The question is \"What material is this picnic table made of?\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=wood with a fixed text, namely 'This is a wooden picnic table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "wood" + "value": "wood", + "description": "material=wood is displayed as \"This is a wooden picnic table\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "concrete" + "value": "concrete", + "description": "material=concrete is displayed as \"This is a concrete picnic table\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=plastic with a fixed text, namely 'This picnic table is made from (recycled) plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "plastic" + "value": "plastic", + "description": "material=plastic is displayed as \"This picnic table is made from (recycled) plastic\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "material", - "description": "Layer 'Picnic tables' shows material=metal with a fixed text, namely 'This picnic table is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "metal" + "value": "metal", + "description": "material=metal is displayed as \"This picnic table is made from metal\" by layer Picnic tables", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material", + "icon_url": "./assets/layers/picnic_table/picnic_table.svg" }, { "key": "amenity", - "description": "The MapComplete theme Playgrounds has a layer Waste Basket showing features with this tag", - "value": "waste_basket" - }, - { - "key": "id", - "description": "Layer 'Waste Basket' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "waste_basket", + "description": "Features with this tag are displayed by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste= with a fixed text, namely 'A waste basket for general waste' (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key waste.", - "value": "" + "description": "waste= is displayed as \"A waste basket for general waste\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=trash with a fixed text, namely 'A waste basket for general waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "trash" + "value": "trash", + "description": "waste=trash is displayed as \"A waste basket for general waste\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=dog_excrement with a fixed text, namely 'A waste basket for dog excrements' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "dog_excrement" + "value": "dog_excrement", + "description": "waste=dog_excrement is displayed as \"A waste basket for dog excrements\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=cigarettes with a fixed text, namely 'A waste basket for cigarettes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "cigarettes" + "value": "cigarettes", + "description": "waste=cigarettes is displayed as \"A waste basket for cigarettes\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=drugs with a fixed text, namely 'A waste basket for drugs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "drugs" + "value": "drugs", + "description": "waste=drugs is displayed as \"A waste basket for drugs\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=sharps with a fixed text, namely 'A waste basket for needles and other sharp objects' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "sharps" + "value": "sharps", + "description": "waste=sharps is displayed as \"A waste basket for needles and other sharp objects\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=plastic with a fixed text, namely 'A waste basket for plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "plastic" + "value": "plastic", + "description": "waste=plastic is displayed as \"A waste basket for plastic\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=pmd with a fixed text, namely 'A waste basket for plastic packaging, metal packaging and drink cartons (PMD)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "pmd" + "value": "pmd", + "description": "waste=pmd is displayed as \"A waste basket for plastic packaging, metal packaging and drink cartons (PMD)\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=paper with a fixed text, namely 'A waste basket for paper' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "paper" + "value": "paper", + "description": "waste=paper is displayed as \"A waste basket for paper\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "excrement_bags" + "value": "excrement_bags", + "description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "not:vending", - "description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key not:vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "not:vending", - "description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "excrement_bags" + "value": "excrement_bags", + "description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "amenity", - "description": "The MapComplete theme Playgrounds has a layer Toilets showing features with this tag", - "value": "toilets" - }, - { - "key": "id", - "description": "Layer 'Toilets' 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 'Playgrounds') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Playgrounds') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Playgrounds') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Playgrounds') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Playgrounds') (This is only shown if repeat_on=)", - "value": "-1" + "value": "toilets", + "description": "Features with this tag are displayed by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Are these toilets publicly accessible?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only access to customers\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "lock" }, { "key": "access", - "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"Accessible, but one has to ask a key to enter\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Playgrounds')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "fee", - "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if access!=no)", - "value": "yes" - }, - { - "key": "fee", - "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if access!=no)", - "value": "no" + "value": "yes", + "description": "fee=yes is displayed as \"These are paid toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "charge", - "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if fee=yes)" + "description": "Values of `charge` are shown with \"The fee is {charge}\" and can be updated. The question is \"How much does one have to pay for these toilets?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_charge", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "payment:cash", - "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Toilets' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:coins", - "description": "Layer 'Toilets' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Toilets' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Toilets' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Toilets' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if access!=no)" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When are these toilets opened?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if access!=no)", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if access!=no)", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"No wheelchair access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "door:width", - "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if (wheelchair=yes | wheelchair=designated))" + "description": "Values of `door:width` are shown with \"The door to the wheelchair-accessible toilet is {canonical(door:width)} wide\" and can be updated. The question is \"What is the width of the door to the wheelchair accessible toilet?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#wheelchair_door_width", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "seated" + "value": "seated", + "description": "toilets:position=seated is displayed as \"There are only seated toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "urinal" + "value": "urinal", + "description": "toilets:position=urinal is displayed as \"There are only urinals here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "squat" + "value": "squat", + "description": "toilets:position=squat is displayed as \"There are only squat toilets here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "seated;urinal" + "value": "seated;urinal", + "description": "toilets:position=seated;urinal is displayed as \"Both seated toilets and urinals are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=yes with a fixed text, namely 'There is a separate, signposted area for men and women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:position!=urinal)", - "value": "yes" + "value": "yes", + "description": "gender_segregated=yes is displayed as \"There is a separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=no with a fixed text, namely 'There is no separate, signposted area for men and women' 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" + "value": "no", + "description": "gender_segregated=no is displayed as \"There is no separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=yes with a fixed text, namely 'Free menstrual products are available to all visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "toilets:menstrual_products=yes is displayed as \"Free menstrual products are available to all visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=limited with a fixed text, namely 'Free menstrual products are available to some visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "limited" + "value": "limited", + "description": "toilets:menstrual_products=limited is displayed as \"Free menstrual products are available to some visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=no with a fixed text, namely 'No free menstrual products are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "toilets:menstrual_products=no is displayed as \"No free menstrual products are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'toilets:menstrual_products:location' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)" + "description": "Values of `toilets:menstrual_products:location` are shown with \"The menstrual products are located in {toilets:menstrual_products:location}\" and can be updated. The question is \"Where are the free menstrual products located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=female_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "female_toilet" + "value": "female_toilet", + "description": "toilets:menstrual_products:location=female_toilet is displayed as \"The free, menstrual products are located in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=male_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "male_toilet" + "value": "male_toilet", + "description": "toilets:menstrual_products:location=male_toilet is displayed as \"The free, menstrual products are located in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=wheelchair_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "toilets:menstrual_products:location=wheelchair_toilet is displayed as \"The free, menstrual products are located in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "changing_table=yes is displayed as \"A changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/baby.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "changing_table=no is displayed as \"No changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if changing_table=yes)" + "description": "Values of `changing_table:location` are shown with \"A changing table is located at {changing_table:location}\" and can be updated. The question is \"Where is the changing table located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'A changing table is in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if changing_table=yes)", - "value": "female_toilet" + "value": "female_toilet", + "description": "changing_table:location=female_toilet is displayed as \"A changing table is in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'A changing table is in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if changing_table=yes)", - "value": "male_toilet" + "value": "male_toilet", + "description": "changing_table:location=male_toilet is displayed as \"A changing table is in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'A changing table is in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if changing_table=yes)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "changing_table:location=wheelchair_toilet is displayed as \"A changing table is in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' 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 'Playgrounds') (This is only shown if changing_table=yes)", - "value": "dedicated_room" + "value": "dedicated_room", + "description": "changing_table:location=dedicated_room is displayed as \"A changing table is in a dedicated room\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "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": "supervised", + "value": "yes", + "description": "supervised=yes is displayed as \"There is a person supervising these toilets during (most of) the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "toilets:handwashing", - "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets don't 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": "supervised", + "value": "interval", + "description": "supervised=interval is displayed as \"There is a person supervising these toilets, but they are present only during certain times of the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "supervised", + "value": "no", + "description": "supervised=no is displayed as \"These toilets are not supervised\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:paper_supplied", - "description": "Layer 'Toilets' 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 'Playgrounds') (This is only shown if toilets:position!=urinal)", - "value": "yes" + "value": "yes", + "description": "toilets:paper_supplied=yes is displayed as \"This toilet is equipped with toilet paper\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:paper_supplied", - "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" + "value": "no", + "description": "toilets:paper_supplied=no is displayed as \"You have to bring your own toilet paper to this toilet\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "yes", + "description": "toilets:handwashing=yes is displayed as \"These toilets have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "no", + "description": "toilets:handwashing=no is displayed as \"These toilets don't have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "electric_hand_dryer", + "description": "toilets:hands_drying=electric_hand_dryer is displayed as \"Electric hand dryers are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "paper_towel", + "description": "toilets:hands_drying=paper_towel is displayed as \"Paper towels are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel_cabinet", + "description": "toilets:hands_drying=towel_cabinet is displayed as \"A towel roll cabinet is available for drying hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel", + "description": "toilets:hands_drying=towel is displayed as \"A fabric towel available to dry your hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "no", + "description": "toilets:hands_drying=no is displayed as \"There are no hand drying facilities available.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "description", - "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Playgrounds')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#description", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "amenity", - "description": "The MapComplete theme Playgrounds has a layer BBQ showing features with this tag", - "value": "bbq" - }, - { - "key": "id", - "description": "Layer 'BBQ' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Playgrounds') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bbq", + "description": "Features with this tag are displayed by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=yes with a fixed text, namely 'This barbecue can be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"This barbecue can be used by anyone\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=no with a fixed text, namely 'This barbecue can't be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"This barbecue can't be used by anyone\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=private with a fixed text, namely 'This barbecue is private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"This barbecue is private\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=permissive with a fixed text, namely 'This barbecue can be used by anyone, but the owner can revoke access at any time' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "permissive" + "value": "permissive", + "description": "access=permissive is displayed as \"This barbecue can be used by anyone, but the owner can revoke access at any time\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=customers with a fixed text, namely 'This barbecue can only be used by customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"This barbecue can only be used by customers\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "access", - "description": "Layer 'BBQ' shows access=permit with a fixed text, namely 'This barbecue can only be used by authorized persons' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "permit" + "value": "permit", + "description": "access=permit is displayed as \"This barbecue can only be used by authorized persons\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "covered", - "description": "Layer 'BBQ' shows covered=no with a fixed text, namely 'This barbecue is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "no" + "value": "no", + "description": "covered=no is displayed as \"This barbecue is not covered\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#covered", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "covered", - "description": "Layer 'BBQ' shows covered=yes with a fixed text, namely 'This barbecue is covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "yes" + "value": "yes", + "description": "covered=yes is displayed as \"This barbecue is covered\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#covered", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "fuel", - "description": "Layer 'BBQ' shows fuel=wood with a fixed text, namely 'This barbecue uses wood as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "wood" + "value": "wood", + "description": "fuel=wood is displayed as \"This barbecue uses wood as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "fuel", - "description": "Layer 'BBQ' shows fuel=charcoal with a fixed text, namely 'This barbecue uses charcoal as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "charcoal" + "value": "charcoal", + "description": "fuel=charcoal is displayed as \"This barbecue uses charcoal as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "fuel", - "description": "Layer 'BBQ' shows fuel=electric with a fixed text, namely 'This barbecue is powered by electricity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "electric" + "value": "electric", + "description": "fuel=electric is displayed as \"This barbecue is powered by electricity\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" }, { "key": "fuel", - "description": "Layer 'BBQ' shows fuel=gas with a fixed text, namely 'This barbecue uses gas as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')", - "value": "gas" + "value": "gas", + "description": "fuel=gas is displayed as \"This barbecue uses gas as fuel\" by layer BBQ", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel", + "icon_url": "./assets/layers/bbq/bbq.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_postboxes.json b/Docs/TagInfo/mapcomplete_postboxes.json index 6dd4f35961..43d3e98ae3 100644 --- a/Docs/TagInfo/mapcomplete_postboxes.json +++ b/Docs/TagInfo/mapcomplete_postboxes.json @@ -7,1745 +7,2271 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/postboxes/postbox.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Postboxes showing features with this tag", - "value": "post_box" + "value": "post_box", + "description": "Features with this tag are displayed by layer Postboxes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postboxes.md", + "icon_url": "./assets/layers/postboxes/postbox.svg" }, { "key": "id", - "description": "Layer 'Postboxes' 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 'Postbox and Post Office Map') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Postboxes, Post offices, Parcel Lockers, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postboxes.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Postboxes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Postboxes, Post offices, Parcel Lockers, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postboxes.md#images", + "icon_url": "./assets/layers/postboxes/postbox.svg" }, { "key": "panoramax", - "description": "The layer 'Postboxes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Postboxes, Post offices, Parcel Lockers, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postboxes.md#images", + "icon_url": "./assets/layers/postboxes/postbox.svg" }, { "key": "mapillary", - "description": "The layer 'Postboxes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Postboxes, Post offices, Parcel Lockers, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postboxes.md#images", + "icon_url": "./assets/layers/postboxes/postbox.svg" }, { "key": "wikidata", - "description": "The layer 'Postboxes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Postboxes, Post offices, Parcel Lockers, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postboxes.md#images", + "icon_url": "./assets/layers/postboxes/postbox.svg" }, { "key": "wikipedia", - "description": "The layer 'Postboxes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Postboxes, Post offices, Parcel Lockers, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postboxes.md#images", + "icon_url": "./assets/layers/postboxes/postbox.svg" }, { "key": "operator", - "description": "Layer 'Postboxes' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `operator` are shown with \"This postbox is operated by {operator}\" and can be updated. The question is \"Who operates this postbox?\" by layer Postboxes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postboxes.md#operator", + "icon_url": "./assets/layers/postboxes/postbox.svg" }, { "key": "amenity", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Post offices showing features with this tag", - "value": "post_office" + "value": "post_office", + "description": "Features with this tag are displayed by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Post offices showing features with this tag", - "value": "post_partner" - }, - { - "key": "id", - "description": "Layer 'Post offices' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "post_partner", + "description": "Features with this tag are displayed by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "phone", - "description": "Layer 'Post offices' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Post offices' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Post offices' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Post offices' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Post offices' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Post offices' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Post offices' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "opening_hours", - "description": "Layer 'Post offices' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours for this post office?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#opening_hours", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "opening_hours", - "description": "Layer 'Post offices' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Post offices, Parcel Lockers, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#opening_hours", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office", - "description": "Layer 'Post offices' shows post_office=post_partner with a fixed text, namely 'This shop is a post partner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity!=post_office)", - "value": "post_partner" + "value": "post_partner", + "description": "post_office=post_partner is displayed as \"This shop is a post partner\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#post_partner", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office", - "description": "Layer 'Post offices' shows post_office= with a fixed text, namely 'This shop is not a post partner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') Picking this answer will delete the key post_office. (This is only shown if amenity!=post_office)", - "value": "" + "description": "post_office= is displayed as \"This shop is not a post partner\" by layers Post offices, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#post_partner", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "brand", - "description": "Layer 'Post offices' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity=post_office)" + "description": "Values of `brand` are shown with \"This is a {brand} post office\" and can be updated. The question is \"To which brand does this post office belong?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#post_offic_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:brand' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)" + "description": "Values of `post_office:brand` are shown with \"This location offers services for {post_office:brand}\" and can be updated. The question is \"For which brand does this location offer services?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=DHL with a fixed text, namely 'This location offers services for DHL' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)", - "value": "DHL" + "value": "DHL", + "description": "post_office:brand=DHL is displayed as \"This location offers services for DHL\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=DPD with a fixed text, namely 'This location offers services for DPD' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)", - "value": "DPD" + "value": "DPD", + "description": "post_office:brand=DPD is displayed as \"This location offers services for DPD\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=GLS with a fixed text, namely 'This location offers services for GLS' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)", - "value": "GLS" + "value": "GLS", + "description": "post_office:brand=GLS is displayed as \"This location offers services for GLS\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=UPS with a fixed text, namely 'This location offers services for UPS' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)", - "value": "UPS" + "value": "UPS", + "description": "post_office:brand=UPS is displayed as \"This location offers services for UPS\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=DHL Paketshop with a fixed text, namely 'This location is a DHL Paketshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)", - "value": "DHL Paketshop" + "value": "DHL Paketshop", + "description": "post_office:brand=DHL Paketshop is displayed as \"This location is a DHL Paketshop\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=Hermes PaketShop with a fixed text, namely 'This location is a Hermes PaketShop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)", - "value": "Hermes PaketShop" + "value": "Hermes PaketShop", + "description": "post_office:brand=Hermes PaketShop is displayed as \"This location is a Hermes PaketShop\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=PostNL with a fixed text, namely 'This location is a PostNL-point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)", - "value": "PostNL" + "value": "PostNL", + "description": "post_office:brand=PostNL is displayed as \"This location is a PostNL-point\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:brand", - "description": "Layer 'Post offices' shows post_office:brand=bpost with a fixed text, namely 'This location offers services for bpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if post_office=post_partner)", - "value": "bpost" + "value": "bpost", + "description": "post_office:brand=bpost is displayed as \"This location offers services for bpost\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#partner_brand", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:letter_from", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:letter_from' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `post_office:letter_from` are shown with \"You can post letters with these companies: {post_office:letter_from}\" and can be updated. The question is \"Can you post a letter here?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#letter_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:letter_from", - "description": "Layer 'Post offices' shows post_office:letter_from=yes with a fixed text, namely 'You can post letters here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "post_office:letter_from=yes is displayed as \"You can post letters here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#letter_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:letter_from", - "description": "Layer 'Post offices' shows post_office:letter_from=no with a fixed text, namely 'You can't post letters here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "no" + "value": "no", + "description": "post_office:letter_from=no is displayed as \"You can't post letters here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#letter_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_from", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_from' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `post_office:parcel_from` are shown with \"You can post parcels with these companies: {post_office:parcel_from}\" and can be updated. The question is \"Can you send a parcel here?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_from", - "description": "Layer 'Post offices' shows post_office:parcel_from=yes with a fixed text, namely 'You can send parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "post_office:parcel_from=yes is displayed as \"You can send parcels here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_from", - "description": "Layer 'Post offices' shows post_office:parcel_from=no with a fixed text, namely 'You can't send parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "no" + "value": "no", + "description": "post_office:parcel_from=no is displayed as \"You can't send parcels here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_from", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_pickup", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_pickup' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `post_office:parcel_pickup` are shown with \"You can pick up parcels from these companies: {post_office:parcel_pickup}\" and can be updated. The question is \"Can you pick up missed parcels here?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_pickup", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_pickup", - "description": "Layer 'Post offices' shows post_office:parcel_pickup=yes with a fixed text, namely 'You can pick up missed parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "post_office:parcel_pickup=yes is displayed as \"You can pick up missed parcels here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_pickup", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_pickup", - "description": "Layer 'Post offices' shows post_office:parcel_pickup=no with a fixed text, namely 'You can't pick up missed parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "no" + "value": "no", + "description": "post_office:parcel_pickup=no is displayed as \"You can't pick up missed parcels here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_pickup", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_to", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_to' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `post_office:parcel_to` are shown with \"You can send parcels to here for pickup with these companies: {post_office:parcel_to}\" and can be updated. The question is \"Can you send parcels to here for pickup?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_to", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_to", - "description": "Layer 'Post offices' shows post_office:parcel_to=yes with a fixed text, namely 'You can send parcels to here for pickup' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "post_office:parcel_to=yes is displayed as \"You can send parcels to here for pickup\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_to", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:parcel_to", - "description": "Layer 'Post offices' shows post_office:parcel_to=no with a fixed text, namely 'You can't send parcels to here for pickup' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "no" + "value": "no", + "description": "post_office:parcel_to=no is displayed as \"You can't send parcels to here for pickup\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#parcel_to", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:stamps", - "description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:stamps' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `post_office:stamps` are shown with \"You can buy stamps from companies: {post_office:stamps}\" and can be updated. The question is \"Can you buy stamps here?\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#stamps", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:stamps", - "description": "Layer 'Post offices' shows post_office:stamps=yes with a fixed text, namely 'You can buy stamps here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "post_office:stamps=yes is displayed as \"You can buy stamps here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#stamps", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "post_office:stamps", - "description": "Layer 'Post offices' shows post_office:stamps=no with a fixed text, namely 'You can't buy stamps here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "no" + "value": "no", + "description": "post_office:stamps=no is displayed as \"You can't buy stamps here\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#stamps", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "atm", - "description": "Layer 'Post offices' shows atm=yes with a fixed text, namely 'This post office has an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "atm=yes is displayed as \"This post office has an ATM\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#has_atm", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "atm", - "description": "Layer 'Post offices' shows atm=no with a fixed text, namely 'This post office does not have an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "no" + "value": "no", + "description": "atm=no is displayed as \"This post office does not have an ATM\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#has_atm", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "atm", - "description": "Layer 'Post offices' shows atm=separate with a fixed text, namely 'This post office does have an ATM, but it is mapped as a different icon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "separate" + "value": "separate", + "description": "atm=separate is displayed as \"This post office does have an ATM, but it is mapped as a different icon\" by layer Post offices", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/postoffices.md#has_atm", + "icon_url": "./assets/layers/postoffices/post_office.svg" }, { "key": "amenity", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Parcel Lockers showing features with this tag", - "value": "parcel_locker" - }, - { - "key": "amenity", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Parcel Lockers showing features with this tag", - "value": "vending_machine" - }, - { - "key": "vending", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Parcel Lockers showing features with this tag", - "value": "parcel_pickup;parcel_mail_in" - }, - { - "key": "id", - "description": "Layer 'Parcel Lockers' 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 'Postbox and Post Office Map') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Parcel Lockers allows to upload images and adds them under the 'panoramax'-tag (and 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 'Parcel Lockers allows to upload images and adds them under the 'panoramax'-tag (and 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 'Parcel Lockers allows to upload images and adds them under the 'panoramax'-tag (and 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 'Parcel Lockers allows to upload images and adds them under the 'panoramax'-tag (and 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 'Parcel Lockers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "parcel_locker", + "description": "Features with this tag are displayed by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "brand", - "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `brand` are shown with \"This is a {brand} parcel locker\" and can be updated. The question is \"What is the brand of the parcel locker?\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#brand", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "operator", - "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `operator` are shown with \"This parcel locker is operated by {operator}\" and can be updated. The question is \"What is the operator of the parcel locker?\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#operator", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "opening_hours", - "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Parcel Lockers, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#opening_hours_24_7", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "opening_hours", - "description": "Layer 'Parcel Lockers' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Parcel Lockers' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "closed" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "ref", - "description": "Layer 'Parcel Lockers' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `ref` are shown with \"This parcel locker has the reference {ref}\" and can be updated. The question is \"What is the reference number/identifier of this parcel locker?\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#ref", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "parcel_mail_in", - "description": "Layer 'Parcel Lockers' shows parcel_mail_in=yes with a fixed text, namely 'You can send packages from this parcel locker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity=parcel_locker)", - "value": "yes" + "value": "yes", + "description": "parcel_mail_in=yes is displayed as \"You can send packages from this parcel locker\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#mail_in", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "parcel_mail_in", - "description": "Layer 'Parcel Lockers' shows parcel_mail_in=no with a fixed text, namely 'You can't send packages from this parcel locker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity=parcel_locker)", - "value": "no" + "value": "no", + "description": "parcel_mail_in=no is displayed as \"You can't send packages from this parcel locker\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#mail_in", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" + }, + { + "key": "parcel_mail_in", + "value": "returns_only", + "description": "parcel_mail_in=returns_only is displayed as \"You can send packages from this parcel locker, but only for returns\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#mail_in", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "parcel_pickup", - "description": "Layer 'Parcel Lockers' shows parcel_pickup=yes with a fixed text, namely 'You can pick up packages from this parcel locker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity=parcel_locker)", - "value": "yes" + "value": "yes", + "description": "parcel_pickup=yes is displayed as \"You can pick up packages from this parcel locker\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#pickup", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "parcel_pickup", - "description": "Layer 'Parcel Lockers' shows parcel_pickup=no with a fixed text, namely 'You can't pick up packages from this parcel locker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity=parcel_locker)", - "value": "no" + "value": "no", + "description": "parcel_pickup=no is displayed as \"You can't pick up packages from this parcel locker\" by layer Parcel Lockers", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parcel_lockers.md#pickup", + "icon_url": "./assets/layers/parcel_lockers/parcel_lockers.svg" }, { "key": "shop", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Shop showing features with this tag" + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Shop showing features with this tag", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Postbox and Post Office Map has a layer Shop showing features with this tag", - "value": "key_cutter" - }, - { - "key": "post_office", - "description": "Layer 'Shop' shows post_office=post_partner with a fixed text, namely 'This shop is a post partner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "post_partner" - }, - { - "key": "post_office", - "description": "Layer 'Shop' shows post_office= with a fixed text, namely 'This shop is not a post partner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') Picking this answer will delete the key post_office.", - "value": "" - }, - { - "key": "id", - "description": "Layer 'Shop' 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 'Postbox and Post Office Map') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "key_cutter", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Postbox and Post Office Map')" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Postbox and Post Office Map')" - }, - { - "key": "contact:website", - "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Postbox and Post Office Map')" - }, - { - "key": "email", - "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Postbox and Post Office Map')" - }, - { - "key": "contact:email", - "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Postbox and Post Office Map')" - }, - { - "key": "operator:email", - "description": "Layer 'Shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Postbox and Post Office Map')" - }, - { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Postbox and Post Office Map')" - }, - { - "key": "contact:phone", - "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "payment:cash", - "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "level", - "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "location", - "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Postbox and Post Office Map') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Postbox and Post Office Map') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Postbox and Post Office Map') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Postbox and Post Office Map') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Postbox and Post Office Map') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Postbox and Post Office Map')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "description", - "description": "Layer 'Shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Postbox and Post Office Map')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#description", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_rainbow_crossings.json b/Docs/TagInfo/mapcomplete_rainbow_crossings.json index c7c3ca681d..b91484d403 100644 --- a/Docs/TagInfo/mapcomplete_rainbow_crossings.json +++ b/Docs/TagInfo/mapcomplete_rainbow_crossings.json @@ -7,62 +7,86 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/rainbow_crossings/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "surface:colour", - "description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag", - "value": "rainbow" + "value": "rainbow", + "description": "Features with this tag are displayed by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "highway", - "description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag", - "value": "crossing" + "value": "crossing", + "description": "Features with this tag are displayed by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "highway", - "description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag", - "value": "footway" + "value": "footway", + "description": "Features with this tag are displayed by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "footway", - "description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag", - "value": "crossing" + "value": "crossing", + "description": "Features with this tag are displayed by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "id", - "description": "Layer 'Crossings with rainbow paintings' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Rainbow pedestrian crossings') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "panoramax", - "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "mapillary", - "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "wikidata", - "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "wikipedia", - "description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" }, { "key": "surface:colour", - "description": "Layer 'Crossings with rainbow paintings' shows surface:colour=rainbow with a fixed text, namely 'This crossing has rainbow paintings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Rainbow pedestrian crossings')", - "value": "rainbow" + "value": "rainbow", + "description": "surface:colour=rainbow is displayed as \"This crossing has rainbow paintings\" by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#crossing_with_rainbow", + "icon_url": "./assets/themes/rainbow_crossings/logo.svg" }, { "key": "not:surface:colour", - "description": "Layer 'Crossings with rainbow paintings' shows not:surface:colour=rainbow with a fixed text, namely 'No rainbow paintings here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Rainbow pedestrian crossings')", - "value": "rainbow" + "value": "rainbow", + "description": "not:surface:colour=rainbow is displayed as \"No rainbow paintings here\" by layer Crossings with rainbow paintings", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#crossing_with_rainbow", + "icon_url": "./assets/themes/rainbow_crossings/crossing.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_scouting.json b/Docs/TagInfo/mapcomplete_scouting.json index 4c565eb08f..224eba15d5 100644 --- a/Docs/TagInfo/mapcomplete_scouting.json +++ b/Docs/TagInfo/mapcomplete_scouting.json @@ -7,394 +7,425 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/scouting_group/scouting.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "club", - "description": "The MapComplete theme Scouting groups has a layer Scouting groups showing features with this tag", - "value": "scout" + "value": "scout", + "description": "Features with this tag are displayed by layer Scouting groups", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md", + "icon_url": "./assets/layers/scouting_group/scouting.svg" }, { "key": "id", - "description": "Layer 'Scouting groups' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Scouting groups') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "name", - "description": "Layer 'Scouting groups' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `name` are shown with \"The name of this group is {name}\" and can be updated. The question is \"What is the name of this group?\" by layer Scouting groups", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#name", + "icon_url": "./assets/layers/scouting_group/scouting.svg" }, { "key": "brand", - "description": "Layer 'Scouting groups' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `brand` are shown with \"The scout association of this group is {brand}\" and can be updated. The question is \"To which scout association does {name} belong?\" by layer Scouting groups", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#association", + "icon_url": "./assets/layers/scouting_group/scouting.svg" }, { "key": "phone", - "description": "Layer 'Scouting groups' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Scouting groups' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Scouting groups')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Scouting groups' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Scouting groups' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Scouting groups')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Scouting groups' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Scouting groups')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Scouting groups' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Scouting groups' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Scouting groups')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#website", + "icon_url": "./assets/layers/icons/website.svg" + }, + { + "key": "start_date", + "description": "Values of `start_date` are shown with \"This group was founded at {start_date}\" and can be updated. The question is \"When was this group founded?\" by layer Scouting groups", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#start_date", + "icon_url": "./assets/layers/scouting_group/scouting.svg" }, { "key": "contact:mastodon", - "description": "Layer 'Scouting groups' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `contact:mastodon` are shown with \"{fediverse_link(contact:mastodon)}\" and can be updated. The question is \"What is the Mastodon-handle of {title()}?\" by layers Scouting groups, Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#mastodon", + "icon_url": "./assets/svg/mastodon.svg" + }, + { + "key": "leisure", + "value": "summer_camp", + "description": "Features with this tag are displayed by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "tourism", - "description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag", - "value": "camp_site" + "value": "camp_site", + "description": "Features with this tag are displayed by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "scout", - "description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag", - "value": "yes" + "value": "yes", + "description": "Features with this tag are displayed by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md", + "icon_url": "./assets/layers/campsite/campsite.svg" + }, + { + "key": "scout", + "value": "only", + "description": "Features with this tag are displayed by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md", + "icon_url": "./assets/layers/campsite/campsite.svg" + }, + { + "key": "group", + "value": "yes", + "description": "Features with this tag are displayed by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "group_only", - "description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Group Campsites' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Scouting groups') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "yes", + "description": "Features with this tag are displayed by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "image", - "description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "panoramax", - "description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "mapillary", - "description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "wikidata", - "description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "wikipedia", - "description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "group_only", - "description": "Layer 'Group Campsites' shows group_only=yes with a fixed text, namely 'This campsite is exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" + "value": "yes", + "description": "group_only=yes is displayed as \"This campsite is exclusively for groups\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#group_only", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "group_only", - "description": "Layer 'Group Campsites' shows group_only=no with a fixed text, namely 'This campsite is not exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "no" + "value": "no", + "description": "group_only=no is displayed as \"This campsite is not exclusively for groups\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#group_only", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "name", - "description": "Layer 'Group Campsites' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "phone", - "description": "Layer 'Group Campsites' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "contact:phone", - "description": "Layer 'Group Campsites' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "email", - "description": "Layer 'Group Campsites' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "contact:email", - "description": "Layer 'Group Campsites' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "operator:email", - "description": "Layer 'Group Campsites' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "website", - "description": "Layer 'Group Campsites' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "contact:website", - "description": "Layer 'Group Campsites' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `name` are shown with \"The name of this campsite is {name}\" and can be updated. The question is \"What is the name of this campsite?\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#name", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "charge", - "description": "Layer 'Group Campsites' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `charge` are shown with \"A fee of {charge} should be paid for here\" and can be updated. The question is \"Is a fee charged here?\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#fee", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "fee", - "description": "Layer 'Group Campsites' shows fee=no with a fixed text, namely 'The campsite is free of charge' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"The campsite is free of charge\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#fee", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "fee", - "description": "Layer 'Group Campsites' shows fee=yes & charge= with a fixed text, namely 'A fee is charged here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" + "value": "yes", + "description": "fee=yes & charge= is displayed as \"A fee is charged here.\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#fee", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "charge", - "description": "Layer 'Group Campsites' shows fee=yes & charge= with a fixed text, namely 'A fee is charged here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') Picking this answer will delete the key charge.", - "value": "" + "description": "fee=yes & charge= is displayed as \"A fee is charged here.\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#fee", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "capacity:persons", - "description": "Layer 'Group Campsites' shows and asks freeform values for key 'capacity:persons' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `capacity:persons` are shown with \"{capacity:persons} people can stay here\" and can be updated. The question is \"How many people can stay here?\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#capacity_persons", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "toilets", - "description": "Layer 'Group Campsites' shows toilets=yes with a fixed text, namely 'This place has toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" + "value": "yes", + "description": "toilets=yes is displayed as \"This place has toilets\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#caravansites_toilets", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "toilets", - "description": "Layer 'Group Campsites' shows toilets=no with a fixed text, namely 'This place does not have toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "no" + "value": "no", + "description": "toilets=no is displayed as \"This place does not have toilets\" by layer Group Campsites", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#caravansites_toilets", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Group Campsites' shows toilets:wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" + "value": "yes", + "description": "toilets:wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#toilets_wheelchair", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Group Campsites' shows toilets:wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "no" + "value": "no", + "description": "toilets:wheelchair=no is displayed as \"No wheelchair access\" by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#toilets_wheelchair", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Group Campsites' shows toilets:wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "designated" - }, - { - "key": "contact:mastodon", - "description": "Layer 'Group Campsites' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Scouting groups')" + "value": "designated", + "description": "toilets:wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layers Group Campsites, Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#toilets_wheelchair", + "icon_url": "./assets/layers/campsite/campsite.svg" }, { "key": "tourism", - "description": "The MapComplete theme Scouting groups has a layer Hostels for groups and scouts showing features with this tag", - "value": "hostel" - }, - { - "key": "scout", - "description": "The MapComplete theme Scouting groups has a layer Hostels for groups and scouts showing features with this tag", - "value": "yes" - }, - { - "key": "group_only", - "description": "The MapComplete theme Scouting groups has a layer Hostels for groups and scouts showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Hostels for groups and scouts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Scouting groups') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "hostel", + "description": "Features with this tag are displayed by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "name", - "description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this {title()}?\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#name", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "group_only", - "description": "Layer 'Hostels for groups and scouts' shows group_only=yes with a fixed text, namely 'This hostel is exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if tourism=hostel)", - "value": "yes" + "value": "yes", + "description": "group_only=yes is displayed as \"This hostel is exclusively for groups\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#group_only", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "group_only", - "description": "Layer 'Hostels for groups and scouts' shows group_only=no with a fixed text, namely 'This hostel is not exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if tourism=hostel)", - "value": "no" + "value": "no", + "description": "group_only=no is displayed as \"This hostel is not exclusively for groups\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#group_only", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "brand", - "description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Scouting groups')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"Is {title()} part of a bigger brand?\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#brand", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "nobrand", - "description": "Layer 'Hostels for groups and scouts' shows nobrand=yes with a fixed text, namely 'Not part of a bigger brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" - }, - { - "key": "phone", - "description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "contact:phone", - "description": "Layer 'Hostels for groups and scouts' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "email", - "description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "contact:email", - "description": "Layer 'Hostels for groups and scouts' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "operator:email", - "description": "Layer 'Hostels for groups and scouts' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "website", - "description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Scouting groups')" - }, - { - "key": "contact:website", - "description": "Layer 'Hostels for groups and scouts' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Scouting groups')" + "value": "yes", + "description": "nobrand=yes is displayed as \"Not part of a bigger brand\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#brand", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wheelchair", - "description": "Layer 'Hostels for groups and scouts' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#wheelchair_access", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wheelchair", - "description": "Layer 'Hostels for groups and scouts' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#wheelchair_access", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wheelchair", - "description": "Layer 'Hostels for groups and scouts' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#wheelchair_access", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "wheelchair", - "description": "Layer 'Hostels for groups and scouts' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "no" - }, - { - "key": "toilets:wheelchair", - "description": "Layer 'Hostels for groups and scouts' shows toilets:wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" - }, - { - "key": "toilets:wheelchair", - "description": "Layer 'Hostels for groups and scouts' shows toilets:wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "no" - }, - { - "key": "toilets:wheelchair", - "description": "Layer 'Hostels for groups and scouts' shows toilets:wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "designated" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#wheelchair_access", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access", - "description": "Layer 'Hostels for groups and scouts' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Hostels for groups and scouts' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Hostels for groups and scouts' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access", - "description": "Layer 'Hostels for groups and scouts' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Hostels for groups and scouts' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access", - "description": "Layer 'Hostels for groups and scouts' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Hostels for groups and scouts' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_fee", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Hostels for groups and scouts' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_fee", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Hostels for groups and scouts' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_fee", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_ssid", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Hostels for groups and scouts' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_ssid", + "icon_url": "./assets/layers/tourism_accomodation/hostel.svg" }, { "key": "dog", - "description": "Layer 'Hostels for groups and scouts' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Hostels for groups and scouts' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Hostels for groups and scouts' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Hostels for groups and scouts' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Hostels for groups and scouts' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Hostels for groups and scouts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_shops.json b/Docs/TagInfo/mapcomplete_shops.json index bdf416844a..62fcad40c4 100644 --- a/Docs/TagInfo/mapcomplete_shops.json +++ b/Docs/TagInfo/mapcomplete_shops.json @@ -7,1784 +7,2198 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/shops/shop.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "shop", - "description": "The MapComplete theme Shops has a layer Shop showing features with this tag" + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Shops has a layer Shop showing features with this tag", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "The MapComplete theme Shops has a layer Shop showing features with this tag", - "value": "key_cutter" + "value": "key_cutter", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "id", - "description": "Layer 'Shop' 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 'Shops') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Shop, Pharmacies, Ice cream parlors, Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#images", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "panoramax", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#images", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "mapillary", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#images", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "wikidata", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#images", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "wikipedia", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#images", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#opening_hours", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "opening_hours", - "description": "Layer 'Shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Shops')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#opening_hours", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "website", - "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Shops')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Shops')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Shops')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Shops')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "payment:cash", - "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Shop, Pharmacies, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "level", - "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Shops') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "location", - "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Shops') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Shops') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Shops') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Shops') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "level", - "description": "Layer 'Shop' 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 'Shops') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#single_level", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A4", - "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Shops') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Shops') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Shops') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Shops') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Shops') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Shops') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Shops') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Shops') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Shops') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Shops') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Shops') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layers Shop, Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "description", - "description": "Layer 'Shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#description", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "amenity", - "description": "The MapComplete theme Shops has a layer Pharmacies showing features with this tag", - "value": "pharmacy" - }, - { - "key": "id", - "description": "Layer 'Pharmacies' 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 'Shops') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and 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 'Pharmacies allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "pharmacy", + "description": "Features with this tag are displayed by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "name", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "opening_hours", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "opening_hours", - "description": "Layer 'Pharmacies' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Shops')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "contact:phone", - "description": "Layer 'Pharmacies' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "email", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "contact:email", - "description": "Layer 'Pharmacies' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "operator:email", - "description": "Layer 'Pharmacies' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "website", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "contact:website", - "description": "Layer 'Pharmacies' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `name` are shown with \"This pharmacy is called {name}\" and can be updated. The question is \"What is the name of the pharmacy?\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#name", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "addr:street", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Shops')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#header", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "addr:unit", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Shops')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#header", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "addr:housenumber", - "description": "Layer 'Pharmacies' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Shops')", - "value": "" + "description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#header", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "addr:housenumber", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `addr:housenumber` are shown with \"The house number is {addr:housenumber}\" and can be updated. The question is \"What is the number of this house?\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#housenumber", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "nohousenumber", - "description": "Layer 'Pharmacies' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "nohousenumber=yes is displayed as \"This building has no house number\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#housenumber", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "addr:street", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Shops') (This is only shown if nohousenumber!~^(yes)$)" + "description": "Values of `addr:street` are shown with \"This address is in street {addr:street}\" and can be updated. The question is \"What street is this address located in?\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#street", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "addr:unit", - "description": "Layer 'Pharmacies' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Shops')" + "description": "Values of `addr:unit` are shown with \"The unit number is {addr:unit}\" and can be updated. The question is \"What is the unit number or letter?\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#unit", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "addr:unit", - "description": "Layer 'Pharmacies' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') Picking this answer will delete the key addr:unit.", - "value": "" - }, - { - "key": "payment:cash", - "description": "Layer 'Pharmacies' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Pharmacies' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Pharmacies' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "description": "addr:unit= is displayed as \"No unit number\" by layer Pharmacies", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pharmacy.md#unit", + "icon_url": "./assets/layers/pharmacy/pharmacy.svg" }, { "key": "amenity", - "description": "The MapComplete theme Shops has a layer Ice cream parlors showing features with this tag", - "value": "ice_cream" - }, - { - "key": "id", - "description": "Layer 'Ice cream parlors' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Shops') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "ice_cream", + "description": "Features with this tag are displayed by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "name", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "opening_hours", - "description": "Layer 'Ice cream parlors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Shops')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "contact:phone", - "description": "Layer 'Ice cream parlors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "email", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "contact:email", - "description": "Layer 'Ice cream parlors' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "operator:email", - "description": "Layer 'Ice cream parlors' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "website", - "description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "contact:website", - "description": "Layer 'Ice cream parlors' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Shops')" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Ice cream parlors' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Ice cream parlors' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Ice cream parlors' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" + "description": "Values of `name` are shown with \"This ice cream parlor is named {name}\" and can be updated. The question is \"What is the name of this ice cream parlor?\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#1", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=only with a fixed text, namely 'This place only sells vegan products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "only" + "value": "only", + "description": "diet:vegan=only is displayed as \"This place only sells vegan products\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=yes with a fixed text, namely 'This shop has a big vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "diet:vegan=yes is displayed as \"This shop has a big vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=limited with a fixed text, namely 'This shop has a limited vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "limited" + "value": "limited", + "description": "diet:vegan=limited is displayed as \"This shop has a limited vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "diet:vegan", - "description": "Layer 'Ice cream parlors' shows diet:vegan=no with a fixed text, namely 'This shop has no vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" - }, - { - "key": "payment:cash", - "description": "Layer 'Ice cream parlors' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Ice cream parlors' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Ice cream parlors' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "no", + "description": "diet:vegan=no is displayed as \"This shop has no vegan offering\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "wheelchair", - "description": "Layer 'Ice cream parlors' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Ice cream parlors", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "amenity", - "description": "The MapComplete theme Shops has a layer Trolley Bays showing features with this tag", - "value": "trolley_bay" - }, - { - "key": "id", - "description": "Layer 'Trolley Bays' 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 'Shops') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "trolley_bay", + "description": "Features with this tag are displayed by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "covered", - "description": "Layer 'Trolley Bays' shows covered=yes with a fixed text, namely 'This trolley bay is covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "covered=yes is displayed as \"This trolley bay is covered\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#covered", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "covered", - "description": "Layer 'Trolley Bays' shows covered=no with a fixed text, namely 'This trolley bay is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" + "value": "no", + "description": "covered=no is displayed as \"This trolley bay is not covered\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#covered", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "trolley:deposit", - "description": "Layer 'Trolley Bays' shows trolley:deposit=yes with a fixed text, namely 'A deposit is required for the trolleys' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "trolley:deposit=yes is displayed as \"A deposit is required for the trolleys\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#deposit", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "trolley:deposit", - "description": "Layer 'Trolley Bays' shows trolley:deposit=no with a fixed text, namely 'No deposit is required for the trolleys' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "no" + "value": "no", + "description": "trolley:deposit=no is displayed as \"No deposit is required for the trolleys\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#deposit", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "trolley:deposit:denominations", - "description": "Layer 'Trolley Bays' shows trolley:deposit:denominations=0.50 EUR with a fixed text, namely '50 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if trolley:deposit=yes & _currency~^(.*EUR.*)$)", - "value": "0.50 EUR" + "value": "0.50 EUR", + "description": "trolley:deposit:denominations=0.50 EUR is displayed as \"50 cent coins are accepted\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#denominations", + "icon_url": "./assets/layers/questions/denominations/eur/50cent.svg" }, { "key": "trolley:deposit:denominations", - "description": "Layer 'Trolley Bays' shows trolley:deposit:denominations=1 EUR with a fixed text, namely '1 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if trolley:deposit=yes & _currency~^(.*EUR.*)$)", - "value": "1 EUR" + "value": "1 EUR", + "description": "trolley:deposit:denominations=1 EUR is displayed as \"1 euro coins are accepted\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#denominations", + "icon_url": "./assets/layers/questions/denominations/eur/1euro.svg" }, { "key": "trolley:deposit:denominations", - "description": "Layer 'Trolley Bays' shows trolley:deposit:denominations=2 EUR with a fixed text, namely '2 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops') (This is only shown if trolley:deposit=yes & _currency~^(.*EUR.*)$)", - "value": "2 EUR" + "value": "2 EUR", + "description": "trolley:deposit:denominations=2 EUR is displayed as \"2 euro coins are accepted\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#denominations", + "icon_url": "./assets/layers/questions/denominations/eur/2euro.svg" }, { "key": "trolley:magnifier", - "description": "Layer 'Trolley Bays' shows trolley:magnifier=yes with a fixed text, namely 'Trolleys with a magnifier are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "trolley:magnifier=yes is displayed as \"Trolleys with a magnifier are available\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#cart_types", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "trolley:wheelchair", - "description": "Layer 'Trolley Bays' shows trolley:wheelchair=yes with a fixed text, namely 'Trolleys for wheelchair users are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "trolley:wheelchair=yes is displayed as \"Trolleys for wheelchair users are available\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#cart_types", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "trolley:children", - "description": "Layer 'Trolley Bays' shows trolley:children=yes with a fixed text, namely 'Trolleys for children are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "trolley:children=yes is displayed as \"Trolleys for children are available\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#cart_types", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "trolley:seats", - "description": "Layer 'Trolley Bays' shows trolley:seats=yes with a fixed text, namely 'Trolleys with seats for children are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "trolley:seats=yes is displayed as \"Trolleys with seats for children are available\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#cart_types", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "trolley:flatbed", - "description": "Layer 'Trolley Bays' shows trolley:flatbed=yes with a fixed text, namely 'Trolleys with a flatbed are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "trolley:flatbed=yes is displayed as \"Trolleys with a flatbed are available\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#cart_types", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" }, { "key": "trolley:vertical", - "description": "Layer 'Trolley Bays' shows trolley:vertical=yes with a fixed text, namely 'Vertical trolleys for sheet-like goods are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Shops')", - "value": "yes" + "value": "yes", + "description": "trolley:vertical=yes is displayed as \"Vertical trolleys for sheet-like goods are available\" by layer Trolley Bays", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/trolley_bay.md#cart_types", + "icon_url": "./assets/layers/trolley_bay/trolley_bay.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_ski.json b/Docs/TagInfo/mapcomplete_ski.json index b2bdcc2b03..554d8c18ee 100644 --- a/Docs/TagInfo/mapcomplete_ski.json +++ b/Docs/TagInfo/mapcomplete_ski.json @@ -7,1749 +7,2080 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/aerialway/chair_lift.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "piste:type", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Ski and snowboard pistes showing features with this tag", - "value": "downhill" + "value": "downhill", + "description": "Features with this tag are displayed by layer Ski and snowboard pistes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md", + "icon_url": "circle" }, { "key": "piste:type", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Ski and snowboard pistes showing features with this tag", - "value": "connection" + "value": "connection", + "description": "Features with this tag are displayed by layer Ski and snowboard pistes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md", + "icon_url": "circle" }, { "key": "id", - "description": "Layer 'Ski and snowboard pistes' 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 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Ski and snowboard pistes, Aerialways, Guideposts, Maps, Information boards, Mountain rescue stations, Toilets, Drinking water, Restaurants and fast food, Viewpoint, Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Ski and snowboard pistes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ski and snowboard pistes, Aerialways, Guideposts, Maps, Information boards, Mountain rescue stations, Toilets, Drinking water, Restaurants and fast food, Restaurants and fast food, Viewpoint, Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#images", + "icon_url": "circle" }, { "key": "panoramax", - "description": "The layer 'Ski and snowboard pistes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ski and snowboard pistes, Aerialways, Guideposts, Maps, Information boards, Mountain rescue stations, Toilets, Drinking water, Restaurants and fast food, Restaurants and fast food, Viewpoint, Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#images", + "icon_url": "circle" }, { "key": "mapillary", - "description": "The layer 'Ski and snowboard pistes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ski and snowboard pistes, Aerialways, Guideposts, Maps, Information boards, Mountain rescue stations, Toilets, Drinking water, Restaurants and fast food, Restaurants and fast food, Viewpoint, Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#images", + "icon_url": "circle" }, { "key": "wikidata", - "description": "The layer 'Ski and snowboard pistes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ski and snowboard pistes, Aerialways, Guideposts, Maps, Information boards, Mountain rescue stations, Toilets, Drinking water, Restaurants and fast food, Restaurants and fast food, Viewpoint, Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#images", + "icon_url": "circle" }, { "key": "wikipedia", - "description": "The layer 'Ski and snowboard pistes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Ski and snowboard pistes, Aerialways, Guideposts, Maps, Information boards, Mountain rescue stations, Toilets, Drinking water, Restaurants and fast food, Restaurants and fast food, Viewpoint, Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#images", + "icon_url": "circle" }, { "key": "piste:difficulty", - "description": "Layer 'Ski and snowboard pistes' shows piste:difficulty=novice with a fixed text, namely 'Novice (green)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if piste:type!=connection)", - "value": "novice" + "value": "novice", + "description": "piste:difficulty=novice is displayed as \"Novice (green)\" by layer Ski and snowboard pistes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#piste_difficulty", + "icon_url": "circle" }, { "key": "piste:difficulty", - "description": "Layer 'Ski and snowboard pistes' shows piste:difficulty=easy with a fixed text, namely 'Easy (blue)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if piste:type!=connection)", - "value": "easy" + "value": "easy", + "description": "piste:difficulty=easy is displayed as \"Easy (blue)\" by layer Ski and snowboard pistes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#piste_difficulty", + "icon_url": "circle" }, { "key": "piste:difficulty", - "description": "Layer 'Ski and snowboard pistes' shows piste:difficulty=intermediate with a fixed text, namely 'Intermediate (red)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if piste:type!=connection)", - "value": "intermediate" + "value": "intermediate", + "description": "piste:difficulty=intermediate is displayed as \"Intermediate (red)\" by layer Ski and snowboard pistes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#piste_difficulty", + "icon_url": "circle" }, { "key": "piste:difficulty", - "description": "Layer 'Ski and snowboard pistes' shows piste:difficulty=advanced with a fixed text, namely 'Advanced (black)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if piste:type!=connection)", - "value": "advanced" + "value": "advanced", + "description": "piste:difficulty=advanced is displayed as \"Advanced (black)\" by layer Ski and snowboard pistes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#piste_difficulty", + "icon_url": "circle" }, { "key": "piste:difficulty", - "description": "Layer 'Ski and snowboard pistes' shows piste:difficulty=expert with a fixed text, namely 'Expert (orange/double black)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if piste:type!=connection)", - "value": "expert" + "value": "expert", + "description": "piste:difficulty=expert is displayed as \"Expert (orange/double black)\" by layer Ski and snowboard pistes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#piste_difficulty", + "icon_url": "circle" }, { "key": "piste:difficulty", - "description": "Layer 'Ski and snowboard pistes' shows piste:difficulty=freeride with a fixed text, namely 'Freeride' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if piste:type!=connection)", - "value": "freeride" + "value": "freeride", + "description": "piste:difficulty=freeride is displayed as \"Freeride\" by layer Ski and snowboard pistes", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ski_piste.md#piste_difficulty", + "icon_url": "circle" }, { "key": "aerialway", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Aerialways showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Aerialways' 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 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Aerialways allows to upload images and adds them under the 'panoramax'-tag (and 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 'Aerialways allows to upload images and adds them under the 'panoramax'-tag (and 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 'Aerialways allows to upload images and adds them under the 'panoramax'-tag (and 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 'Aerialways allows to upload images and adds them under the 'panoramax'-tag (and 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 'Aerialways allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Features with this tag are displayed by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md", + "icon_url": "square" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=cable_car with a fixed text, namely 'This is a cable car where the car goes up and down again on the same cable.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "cable_car" + "value": "cable_car", + "description": "aerialway=cable_car is displayed as \"This is a cable car where the car goes up and down again on the same cable.\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "./assets/layers/aerialway/cable_car.svg" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=gondola with a fixed text, namely 'This is a gondola where the cars go around in continuous circles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "gondola" + "value": "gondola", + "description": "aerialway=gondola is displayed as \"This is a gondola where the cars go around in continuous circles\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "./assets/layers/aerialway/gondola_lift.svg" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=chair_lift with a fixed text, namely 'An open chairlift with seats to sit on and open to the outside air.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "chair_lift" + "value": "chair_lift", + "description": "aerialway=chair_lift is displayed as \"An open chairlift with seats to sit on and open to the outside air.\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "./assets/layers/aerialway/chair_lift.svg" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=mixed with a fixed text, namely 'An aerialway which has both chairs and gondolas in the same continuous track' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "mixed" + "value": "mixed", + "description": "aerialway=mixed is displayed as \"An aerialway which has both chairs and gondolas in the same continuous track\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "square" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=drag_lift with a fixed text, namely 'A drag lift' (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "drag_lift" + "value": "drag_lift", + "description": "aerialway=drag_lift is displayed as \"A drag lift\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "square" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=t-bar with a fixed text, namely 'A drag lift with T-shaped carriers for two passengers at a time' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "t-bar" + "value": "t-bar", + "description": "aerialway=t-bar is displayed as \"A drag lift with T-shaped carriers for two passengers at a time\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "square" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=j-bar with a fixed text, namely 'A drag lift with L-shaped bars for a single passenger at a time' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "j-bar" + "value": "j-bar", + "description": "aerialway=j-bar is displayed as \"A drag lift with L-shaped bars for a single passenger at a time\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "square" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=platter with a fixed text, namely 'A drag lift with a platter to drag a single passenger at a time' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "platter" + "value": "platter", + "description": "aerialway=platter is displayed as \"A drag lift with a platter to drag a single passenger at a time\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "square" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=rope_tow with a fixed text, namely 'A tow line which skiers hold on to or attach themselves onto' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "rope_tow" + "value": "rope_tow", + "description": "aerialway=rope_tow is displayed as \"A tow line which skiers hold on to or attach themselves onto\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "square" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=magic_carpet with a fixed text, namely 'A magic carpet (a conveyor belt on the ground)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "magic_carpet" + "value": "magic_carpet", + "description": "aerialway=magic_carpet is displayed as \"A magic carpet (a conveyor belt on the ground)\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "square" }, { "key": "aerialway", - "description": "Layer 'Aerialways' shows aerialway=zip_line with a fixed text, namely 'A zip line. (A touristic attraction where adventurous people go down at high speeds)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "zip_line" + "value": "zip_line", + "description": "aerialway=zip_line is displayed as \"A zip line. (A touristic attraction where adventurous people go down at high speeds)\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#type", + "icon_url": "square" }, { "key": "duration", - "description": "Layer 'Aerialways' shows and asks freeform values for key 'duration' (in the mapcomplete.org theme 'Ski pistes and aerialways')" + "description": "Values of `duration` are shown with \"A single journey takes {duration} minutes\" and can be updated. The question is \"How long takes a single journey with this elevator?\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#duration", + "icon_url": "square" }, { "key": "aerialway:occupancy", - "description": "Layer 'Aerialways' shows and asks freeform values for key 'aerialway:occupancy' (in the mapcomplete.org theme 'Ski pistes and aerialways')" + "description": "Values of `aerialway:occupancy` are shown with \"{aerialway:occupancy} people fit a single carriage\" and can be updated. The question is \"How many people fit a single carriage?\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#occupancy", + "icon_url": "square" }, { "key": "opening_hours", - "description": "Layer 'Aerialways' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Ski pistes and aerialways')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Aerialways, Drinking water, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#opening_hours", + "icon_url": "square" }, { "key": "opening_hours", - "description": "Layer 'Aerialways' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Aerialways, Toilets, Drinking water, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#opening_hours", + "icon_url": "square" }, { "key": "oneway", - "description": "Layer 'Aerialways' shows oneway=yes with a fixed text, namely 'This aerialway can only be taken to the top' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" + "value": "yes", + "description": "oneway=yes is displayed as \"This aerialway can only be taken to the top\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#oneway", + "icon_url": "square" }, { "key": "oneway", - "description": "Layer 'Aerialways' shows oneway=no with a fixed text, namely 'This aerialway can be taken in both directions' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" + "value": "no", + "description": "oneway=no is displayed as \"This aerialway can be taken in both directions\" by layer Aerialways", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/aerialway.md#oneway", + "icon_url": "square" }, { "key": "information", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Guideposts showing features with this tag", - "value": "guidepost" - }, - { - "key": "id", - "description": "Layer 'Guideposts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "guidepost", + "description": "Features with this tag are displayed by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "bicycle", - "description": "Layer 'Guideposts' shows bicycle=yes with a fixed text, namely 'This guidepost shows bicycle routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" + "value": "yes", + "description": "bicycle=yes is displayed as \"This guidepost shows bicycle routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "hiking", - "description": "Layer 'Guideposts' shows hiking=yes with a fixed text, namely 'This guidepost shows hiking routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" + "value": "yes", + "description": "hiking=yes is displayed as \"This guidepost shows hiking routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "mtb", - "description": "Layer 'Guideposts' shows mtb=yes with a fixed text, namely 'This guidepost shows mountain bike routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" + "value": "yes", + "description": "mtb=yes is displayed as \"This guidepost shows mountain bike routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "horse", - "description": "Layer 'Guideposts' shows horse=yes with a fixed text, namely 'This guidepost shows horse riding routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" + "value": "yes", + "description": "horse=yes is displayed as \"This guidepost shows horse riding routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "ski", - "description": "Layer 'Guideposts' shows ski=yes with a fixed text, namely 'This guidepost shows ski routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "tourism", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Maps showing features with this tag", - "value": "map" - }, - { - "key": "information", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Maps showing features with this tag", - "value": "map" - }, - { - "key": "id", - "description": "Layer 'Maps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "map_type", - "description": "Layer 'Maps' shows map_type=topo with a fixed text, namely 'Topographical map

The map contains contour lines.

' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "topo" - }, - { - "key": "map_type", - "description": "Layer 'Maps' shows map_type=street with a fixed text, namely 'A map with all streets or ways of an area.

The streets are mostly named; the angles, distances etc. are accurate

' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "street" - }, - { - "key": "map_type", - "description": "Layer 'Maps' shows map_type=scheme with a fixed text, namely 'This is a schematic map.

A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.

' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "scheme" - }, - { - "key": "map_type", - "description": "Layer 'Maps' shows map_type=toposcope with a fixed text, namely 'This is a toposcope.

A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point

' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "toposcope" - }, - { - "key": "map_size", - "description": "Layer 'Maps' shows map_size=building with a fixed text, namely 'A map of the rooms within a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "building" - }, - { - "key": "map_size", - "description": "Layer 'Maps' shows map_size=site with a fixed text, namely 'A map of special site, like of a historical castle, a park, a campus, a forest, ....' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "site" - }, - { - "key": "map_size", - "description": "Layer 'Maps' shows map_size=village with a fixed text, namely 'A map showing the village or town' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "village" - }, - { - "key": "map_size", - "description": "Layer 'Maps' shows map_size=city with a fixed text, namely 'A map of a city' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "city" - }, - { - "key": "map_size", - "description": "Layer 'Maps' shows map_size=region with a fixed text, namely 'The map of an entire region, showing multiple cities and villages' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "region" - }, - { - "key": "map_source", - "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap & not:map_source= with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "OpenStreetMap" - }, - { - "key": "not:map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap & not:map_source= with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') Picking this answer will delete the key not:map_source.", - "value": "" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=yes with a fixed text, namely 'OpenStreetMap is clearly attributed, including the ODBL-license' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "yes" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=incomplete with a fixed text, namely 'OpenStreetMap is clearly attributed, but the license is not mentioned' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "incomplete" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=sticker with a fixed text, namely 'OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "sticker" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=none with a fixed text, namely 'There is no attribution at all' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "none" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)", - "value": "no" - }, - { - "key": "information", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Information boards showing features with this tag", - "value": "board" - }, - { - "key": "id", - "description": "Layer 'Information boards' 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 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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 'Information boards allows to upload images and adds them under the 'panoramax'-tag (and 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": "emergency", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Mountain rescue stations showing features with this tag", - "value": "mountain_rescue" - }, - { - "key": "id", - "description": "Layer 'Mountain rescue stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Mountain rescue stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Mountain rescue stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Mountain rescue stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Mountain rescue stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Mountain rescue stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "amenity", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Toilets showing features with this tag", - "value": "toilets" - }, - { - "key": "id", - "description": "Layer 'Toilets' 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 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Ski pistes and aerialways') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Ski pistes and aerialways') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Ski pistes and aerialways') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets' 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 'Ski pistes and aerialways') (This is only shown if repeat_on=)", - "value": "-1" - }, - { - "key": "access", - "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "access", - "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "access", - "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "key" - }, - { - "key": "access", - "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "public" - }, - { - "key": "fee", - "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if access!=no)", - "value": "yes" - }, - { - "key": "fee", - "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if access!=no)", - "value": "no" - }, - { - "key": "charge", - "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fee=yes)" - }, - { - "key": "payment:cash", - "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Toilets' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:coins", - "description": "Layer 'Toilets' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:notes", - "description": "Layer 'Toilets' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:debit_cards", - "description": "Layer 'Toilets' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "payment:credit_cards", - "description": "Layer 'Toilets' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fee=yes)", - "value": "yes" - }, - { - "key": "opening_hours", - "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if access!=no)" - }, - { - "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if access!=no)", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if access!=no)", - "value": "closed" - }, - { - "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "designated" - }, - { - "key": "door:width", - "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if (wheelchair=yes | wheelchair=designated))" - }, - { - "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "seated" - }, - { - "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "urinal" - }, - { - "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "squat" - }, - { - "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "seated;urinal" - }, - { - "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=yes with a fixed text, namely 'There is a separate, signposted area for men and women' 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": "yes" - }, - { - "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=no with a fixed text, namely 'There is no separate, signposted area for men and women' 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:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=yes with a fixed text, namely 'Free menstrual products are available to all visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=limited with a fixed text, namely 'Free menstrual products are available to some visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "limited" - }, - { - "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=no with a fixed text, namely 'No free menstrual products are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'toilets:menstrual_products:location' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)" - }, - { - "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=female_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "female_toilet" - }, - { - "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=male_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "male_toilet" - }, - { - "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=wheelchair_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "wheelchair_toilet" - }, - { - "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if changing_table=yes)" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'A changing table is in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if changing_table=yes)", - "value": "female_toilet" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'A changing table is in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if changing_table=yes)", - "value": "male_toilet" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'A changing table is in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if changing_table=yes)", - "value": "wheelchair_toilet" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets' 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 'Ski pistes and aerialways') (This is only shown if changing_table=yes)", - "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')", - "value": "yes" - }, - { - "key": "toilets:handwashing", - "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets don't 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:paper_supplied", - "description": "Layer 'Toilets' 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 'Ski pistes and aerialways') (This is only shown if toilets:position!=urinal)", - "value": "yes" - }, - { - "key": "toilets:paper_supplied", - "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": "description", - "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "amenity", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Drinking water showing features with this tag", - "value": "drinking_water" - }, - { - "key": "drinking_water", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Drinking water showing features with this tag", - "value": "yes" - }, - { - "key": "disused:amenity", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Drinking water showing features with this tag", - "value": "drinking_water" - }, - { - "key": "id", - "description": "Layer 'Drinking water' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "operational_status", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') Picking this answer will delete the key operational_status.", - "value": "" - }, - { - "key": "disused:amenity", - "description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') Picking this answer will delete the key disused:amenity.", - "value": "" - }, - { - "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "broken" - }, - { - "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "closed" - }, - { - "key": "disused:amenity", - "description": "Layer 'Drinking water' shows disused:amenity=drinking_water with a fixed text, namely 'This drinking water is permanently closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "drinking_water" - }, - { - "key": "fee", - "description": "Layer 'Drinking water' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "fee", - "description": "Layer 'Drinking water' shows fee=yes with a fixed text, namely 'One needs to pay to use this drinking water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bubbler with a fixed text, namely 'This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "bubbler" - }, - { - "key": "fountain", - "description": "Layer 'Drinking water' shows fountain=bottle_refill with a fixed text, namely 'This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "bottle_refill" - }, - { - "key": "man_made", - "description": "Layer 'Drinking water' shows man_made=water_tap with a fixed text, namely 'This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "water_tap" - }, - { - "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fountain!=bottle_refill)", - "value": "yes" - }, - { - "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if fountain!=bottle_refill)", - "value": "no" - }, - { - "key": "iced_water", - "description": "Layer 'Drinking water' shows iced_water=yes with a fixed text, namely 'Ice-cold water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "cold_water", - "description": "Layer 'Drinking water' shows cold_water=yes with a fixed text, namely 'Actively cooled water is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "room_temperature_water", - "description": "Layer 'Drinking water' shows room_temperature_water=yes with a fixed text, namely 'Ambient temperature water (without active cooling or heating) is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "warm_water", - "description": "Layer 'Drinking water' shows warm_water=yes with a fixed text, namely 'Warmed water is provided here; the water is not dangerously hot' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "hot_water", - "description": "Layer 'Drinking water' shows hot_water=yes with a fixed text, namely 'Hot water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "summer" - }, - { - "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "spring;summer;autumn" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "seasonal", - "description": "Layer 'Drinking water' shows seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) with a fixed text, namely 'This drinking water fountain is closed this season. As such, the opening hours are not shown.' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Drinking water' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "closed" - }, - { - "key": "tourism", - "description": "Layer 'Drinking water' shows tourism=artwork with a fixed text, namely 'This drinking water point has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "artwork" - }, - { - "key": "not:tourism:artwork", - "description": "Layer 'Drinking water' shows not:tourism:artwork=yes with a fixed text, namely 'This drinking water point does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "tourism", - "description": "Layer 'Drinking water' shows tourism= with a fixed text, namely 'This drinking water point probably doesn't have an integrated artwork' (in the mapcomplete.org theme 'Ski pistes and aerialways') Picking this answer will delete the key tourism.", - "value": "" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "architecture" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "mural" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "painting" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "sculpture" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "statue" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "bust" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "stone" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "installation" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "graffiti" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "relief" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "azulejo" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "tilework" - }, - { - "key": "artwork_type", - "description": "Layer 'Drinking water' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)", - "value": "woodcarving" - }, - { - "key": "artist:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)" - }, - { - "key": "artist_name", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)" - }, - { - "key": "website", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)" - }, - { - "key": "subject:wikidata", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if tourism=artwork)" - }, - { - "key": "amenity", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Restaurants and fast food showing features with this tag", - "value": "fast_food" - }, - { - "key": "amenity", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Restaurants and fast food showing features with this tag", - "value": "restaurant" - }, - { - "key": "id", - "description": "Layer 'Restaurants and fast food' 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 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "yes", + "description": "ski=yes is displayed as \"This guidepost shows ski routes\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "name", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Ski pistes and aerialways')" + "description": "Values of `name` are shown with \"Name noted on the guidepost: {name}\" and can be updated. The question is \"What is the name noted on this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { - "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "fast_food" + "key": "noname", + "value": "yes", + "description": "noname=yes is displayed as \"There is no name noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { - "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'A restaurant, focused on creating a nice experience where one is served at the table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "restaurant" + "key": "ref", + "description": "Values of `ref` are shown with \"Reference number of the guidepost: {ref}\" and can be updated. The question is \"What is the reference number of this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { - "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Ski pistes and aerialways')" + "key": "noref", + "value": "yes", + "description": "noref=yes is displayed as \"There is no reference number noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { - "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "closed" + "key": "ele", + "description": "Values of `ele` are shown with \"Elevation noted on the guidepost: {ele} m\" and can be updated. The question is \"What is the elevation noted on this guidepost?\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { - "key": "website", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "contact:website", - "description": "Layer 'Restaurants and fast food' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "email", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "contact:email", - "description": "Layer 'Restaurants and fast food' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "operator:email", - "description": "Layer 'Restaurants and fast food' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "phone", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "contact:phone", - "description": "Layer 'Restaurants and fast food' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "payment:cash", - "description": "Layer 'Restaurants and fast food' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Restaurants and fast food' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Restaurants and fast food' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Ski pistes and aerialways') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Ski pistes and aerialways') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Ski pistes and aerialways') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Restaurants and fast food' 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 'Ski pistes and aerialways') (This is only shown if repeat_on=)", - "value": "-1" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'Pizzeria' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "pizza" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'Friture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "friture" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Serves mainly pasta' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "pasta" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'Kebab shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "kebab" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'Sandwich shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "sandwich" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Burgersrestaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "burger" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Sushi restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "sushi" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Coffeebar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "coffee" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'Italian restaurant (which serves more than pasta and pizza)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "italian" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'French restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "french" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Chinese' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "chinese" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Greek' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "greek" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Indian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "indian" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Turkish restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "turkish" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Thai restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "thai" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=mexican with a fixed text, namely 'Mexican dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "mexican " - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=japanese with a fixed text, namely 'Japanese dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "japanese " - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chicken with a fixed text, namely 'Chicken based dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "chicken " - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=seafood with a fixed text, namely 'Seafood dishes are served here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "seafood " - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Restaurants and fast food shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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 'Restaurants and fast food allows to upload images and adds them under the 'panoramax'-tag (and 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": "website:menu", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website:menu' (in the mapcomplete.org theme 'Ski pistes and aerialways')" - }, - { - "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=required with a fixed text, namely 'A reservation is required at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if takeaway!=only)", - "value": "required" - }, - { - "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=recommended with a fixed text, namely 'A reservation is not required, but still recommended to make sure you get a table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if takeaway!=only)", - "value": "recommended" - }, - { - "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=yes with a fixed text, namely 'Reservation is possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if takeaway!=only)", - "value": "yes" - }, - { - "key": "reservation", - "description": "Layer 'Restaurants and fast food' shows reservation=no with a fixed text, namely 'Reservation is not possible at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if takeaway!=only)", - "value": "no" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "only" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=yes with a fixed text, namely 'This business does home delivery (possibly via a third party)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "delivery", - "description": "Layer 'Restaurants and fast food' shows delivery=no with a fixed text, namely 'This business does not deliver at home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=yes with a fixed text, namely 'This fast-food restaurant has a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if amenity=fast_food)", - "value": "yes" - }, - { - "key": "drive_through", - "description": "Layer 'Restaurants and fast food' shows drive_through=no with a fixed text, namely 'This fast-food restaurant does not have a drive-through' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if amenity=fast_food)", - "value": "no" - }, - { - "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours:drive_through' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if drive_through=yes)" - }, - { - "key": "opening_hours:drive_through", - "description": "Layer 'Restaurants and fast food' shows opening_hours:drive_through= with a fixed text, namely 'The opening hours of the drive-through are the same as the restaurant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') Picking this answer will delete the key opening_hours:drive_through. (This is only shown if drive_through=yes)", - "value": "" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "no" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Some vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "limited" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "yes" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'All dishes are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "only" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegetarian version, but this should be demanded' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "on_demand" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "no" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Some vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "limited" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "yes" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'All dishes are vegan' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "only" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=on_demand with a fixed text, namely 'Some dishes might be adapted to a vegan version if asked for' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "on_demand" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "no" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "limited" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "yes" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "only" - }, - { - "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'There are no organic options available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "no" - }, - { - "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'There is an organic menu' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "yes" - }, - { - "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic options are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine!=friture)", - "value": "only" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'Serves only vegetarian snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "only" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "yes" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Only a small selection of snacks are vegetarian' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "limited" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'No vegetarian snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "no" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'Serves only vegan snacks and burgers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "only" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "yes" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'A small selection of vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "limited" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'No vegan snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "no" - }, - { - "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=yes with a fixed text, namely 'Organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "yes" - }, - { - "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=no with a fixed text, namely 'No organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "no" - }, - { - "key": "organic", - "description": "Layer 'Restaurants and fast food' shows organic=only with a fixed text, namely 'Only organic snacks are available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "only" - }, - { - "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'The frying is done with vegetable oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "vegetable" - }, - { - "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'The frying is done with animal oil' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "animal" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "yes" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "no" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if cuisine=friture)", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "only" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "limited" - }, - { - "key": "diet:sugar_free", - "description": "Layer 'Restaurants and fast food' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "only" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "limited" - }, - { - "key": "diet:gluten_free", - "description": "Layer 'Restaurants and fast food' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "only" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "limited" - }, - { - "key": "diet:lactose_free", - "description": "Layer 'Restaurants and fast food' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=yes with a fixed text, namely 'Smoking is allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if _country!~^(al|be)$)", - "value": "yes" - }, - { - "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=no with a fixed text, namely 'Smoking is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if _country!~^(al|be)$)", - "value": "no" - }, - { - "key": "smoking", - "description": "Layer 'Restaurants and fast food' shows smoking=outside with a fixed text, namely 'Smoking is allowed outside.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if _country!~^(al|be)$)", - "value": "outside" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "limited" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "ask" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "outdoor_seating", - "description": "Layer 'Restaurants and fast food' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "indoor_seating", - "description": "Layer 'Restaurants and fast food' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "unleashed" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "outside" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "wlan" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "yes" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "terminal" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "wired" - }, - { - "key": "internet_access", - "description": "Layer 'Restaurants and fast food' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "terminal;wifi" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" - }, - { - "key": "internet_access:fee", - "description": "Layer 'Restaurants and fast food' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if internet_access~^(.*wlan.*)$)" - }, - { - "key": "internet_access:ssid", - "description": "Layer 'Restaurants and fast food' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "key": "noele", + "value": "yes", + "description": "noele=yes is displayed as \"There is no elevation noted on this guidepost\" by layer Guideposts", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele", + "icon_url": "./assets/layers/guidepost/guidepost.svg" }, { "key": "tourism", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Viewpoint showing features with this tag", - "value": "viewpoint" + "value": "map", + "description": "Features with this tag are displayed by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md", + "icon_url": "./assets/layers/map/map.svg" }, { - "key": "id", - "description": "Layer 'Viewpoint' 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 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "key": "information", + "value": "map", + "description": "Features with this tag are displayed by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md", + "icon_url": "./assets/layers/map/map.svg" }, { - "key": "image", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'panoramax'-tag (and 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": "map_type", + "value": "topo", + "description": "map_type=topo is displayed as \"Topographical map

The map contains contour lines.

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { - "key": "panoramax", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'panoramax'-tag (and 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": "map_type", + "value": "street", + "description": "map_type=street is displayed as \"A map with all streets or ways of an area.

The streets are mostly named; the angles, distances etc. are accurate

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { - "key": "mapillary", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'panoramax'-tag (and 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": "map_type", + "value": "scheme", + "description": "map_type=scheme is displayed as \"This is a schematic map.

A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { - "key": "wikidata", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'panoramax'-tag (and 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": "map_type", + "value": "toposcope", + "description": "map_type=toposcope is displayed as \"This is a toposcope.

A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point

\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type", + "icon_url": "./assets/layers/map/map.svg" }, { - "key": "wikipedia", - "description": "The layer 'Viewpoint allows to upload images and adds them under the 'panoramax'-tag (and 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": "map_size", + "value": "building", + "description": "map_size=building is displayed as \"A map of the rooms within a building\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" }, { - "key": "description", - "description": "Layer 'Viewpoint' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Ski pistes and aerialways')" + "key": "map_size", + "value": "site", + "description": "map_size=site is displayed as \"A map of special site, like of a historical castle, a park, a campus, a forest, ....\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_size", + "value": "village", + "description": "map_size=village is displayed as \"A map showing the village or town\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_size", + "value": "city", + "description": "map_size=city is displayed as \"A map of a city\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_size", + "value": "region", + "description": "map_size=region is displayed as \"The map of an entire region, showing multiple cities and villages\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_source", + "description": "Values of `map_source` are shown with \"This map is based on {map_source}\" and can be updated. The question is \"On which data is this map based?\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_source", + "value": "OpenStreetMap", + "description": "map_source=OpenStreetMap & not:map_source= is displayed as \"This map is based on OpenStreetMap\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "not:map_source", + "description": "map_source=OpenStreetMap & not:map_source= is displayed as \"This map is based on OpenStreetMap\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_source:attribution", + "value": "yes", + "description": "map_source:attribution=yes is displayed as \"OpenStreetMap is clearly attributed, including the ODBL-license\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_source:attribution", + "value": "incomplete", + "description": "map_source:attribution=incomplete is displayed as \"OpenStreetMap is clearly attributed, but the license is not mentioned\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_source:attribution", + "value": "sticker", + "description": "map_source:attribution=sticker is displayed as \"OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_source:attribution", + "value": "none", + "description": "map_source:attribution=none is displayed as \"There is no attribution at all\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "map_source:attribution", + "value": "no", + "description": "map_source:attribution=no is displayed as \"There is no attribution at all\" by layer Maps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution", + "icon_url": "./assets/layers/map/map.svg" + }, + { + "key": "information", + "value": "board", + "description": "Features with this tag are displayed by layer Information boards", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/information_board.md", + "icon_url": "./assets/layers/information_board/board.svg" + }, + { + "key": "emergency", + "value": "mountain_rescue", + "description": "Features with this tag are displayed by layer Mountain rescue stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/mountain_rescue.md", + "icon_url": "./assets/layers/mountain_rescue/red_cross.svg" }, { "key": "amenity", - "description": "The MapComplete theme Ski pistes and aerialways has a layer Binoculars showing features with this tag", - "value": "binoculars" + "value": "toilets", + "description": "Features with this tag are displayed by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "id", - "description": "Layer 'Binoculars' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "key": "level", + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "image", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "location", + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "panoramax", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "level", + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "mapillary", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "level", + "description": "level= is displayed as \"Located on the ground floor\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "wikidata", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "level", + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "wikipedia", - "description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "key": "level", + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "charge", - "description": "Layer 'Binoculars' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Ski pistes and aerialways')" + "key": "access", + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Are these toilets publicly accessible?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "access", + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "access", + "value": "customers", + "description": "access=customers is displayed as \"Only access to customers\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" + }, + { + "key": "access", + "value": "no", + "description": "access=no is displayed as \"Not accessible\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "lock" + }, + { + "key": "access", + "value": "key", + "description": "access=key is displayed as \"Accessible, but one has to ask a key to enter\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" + }, + { + "key": "access", + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "fee", - "description": "Layer 'Binoculars' shows fee=no & charge= with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')", - "value": "no" + "value": "yes", + "description": "fee=yes is displayed as \"These are paid toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "fee", + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layers Toilets, Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "charge", - "description": "Layer 'Binoculars' shows fee=no & charge= with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') Picking this answer will delete the key charge.", - "value": "" + "description": "Values of `charge` are shown with \"The fee is {charge}\" and can be updated. The question is \"How much does one have to pay for these toilets?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_charge", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "payment:cash", + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/cash.svg" + }, + { + "key": "payment:cards", + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" + }, + { + "key": "payment:qr_code", + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Toilets, Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/qrcode.svg" + }, + { + "key": "payment:coins", + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" + }, + { + "key": "payment:notes", + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" + }, + { + "key": "payment:debit_cards", + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" + }, + { + "key": "payment:credit_cards", + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" + }, + { + "key": "opening_hours", + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When are these toilets opened?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "opening_hours", + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layers Toilets, Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" + }, + { + "key": "wheelchair", + "value": "yes", + "description": "wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "wheelchair", + "value": "no", + "description": "wheelchair=no is displayed as \"No wheelchair access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "wheelchair", + "value": "designated", + "description": "wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "door:width", + "description": "Values of `door:width` are shown with \"The door to the wheelchair-accessible toilet is {canonical(door:width)} wide\" and can be updated. The question is \"What is the width of the door to the wheelchair accessible toilet?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#wheelchair_door_width", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:position", + "value": "seated", + "description": "toilets:position=seated is displayed as \"There are only seated toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:position", + "value": "urinal", + "description": "toilets:position=urinal is displayed as \"There are only urinals here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:position", + "value": "squat", + "description": "toilets:position=squat is displayed as \"There are only squat toilets here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:position", + "value": "seated;urinal", + "description": "toilets:position=seated;urinal is displayed as \"Both seated toilets and urinals are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "gender_segregated", + "value": "yes", + "description": "gender_segregated=yes is displayed as \"There is a separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "gender_segregated", + "value": "no", + "description": "gender_segregated=no is displayed as \"There is no separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:menstrual_products", + "value": "yes", + "description": "toilets:menstrual_products=yes is displayed as \"Free menstrual products are available to all visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:menstrual_products", + "value": "limited", + "description": "toilets:menstrual_products=limited is displayed as \"Free menstrual products are available to some visitors of these toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:menstrual_products", + "value": "no", + "description": "toilets:menstrual_products=no is displayed as \"No free menstrual products are available here\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:menstrual_products:location", + "description": "Values of `toilets:menstrual_products:location` are shown with \"The menstrual products are located in {toilets:menstrual_products:location}\" and can be updated. The question is \"Where are the free menstrual products located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:menstrual_products:location", + "value": "female_toilet", + "description": "toilets:menstrual_products:location=female_toilet is displayed as \"The free, menstrual products are located in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:menstrual_products:location", + "value": "male_toilet", + "description": "toilets:menstrual_products:location=male_toilet is displayed as \"The free, menstrual products are located in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:menstrual_products:location", + "value": "wheelchair_toilet", + "description": "toilets:menstrual_products:location=wheelchair_toilet is displayed as \"The free, menstrual products are located in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "changing_table", + "value": "yes", + "description": "changing_table=yes is displayed as \"A changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/baby.svg" + }, + { + "key": "changing_table", + "value": "no", + "description": "changing_table=no is displayed as \"No changing table is available\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "changing_table:location", + "description": "Values of `changing_table:location` are shown with \"A changing table is located at {changing_table:location}\" and can be updated. The question is \"Where is the changing table located?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "changing_table:location", + "value": "female_toilet", + "description": "changing_table:location=female_toilet is displayed as \"A changing table is in the toilet for women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "changing_table:location", + "value": "male_toilet", + "description": "changing_table:location=male_toilet is displayed as \"A changing table is in the toilet for men\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "changing_table:location", + "value": "wheelchair_toilet", + "description": "changing_table:location=wheelchair_toilet is displayed as \"A changing table is in the toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "changing_table:location", + "value": "dedicated_room", + "description": "changing_table:location=dedicated_room is displayed as \"A changing table is in a dedicated room\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "supervised", + "value": "yes", + "description": "supervised=yes is displayed as \"There is a person supervising these toilets during (most of) the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "supervised", + "value": "interval", + "description": "supervised=interval is displayed as \"There is a person supervising these toilets, but they are present only during certain times of the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "supervised", + "value": "no", + "description": "supervised=no is displayed as \"These toilets are not supervised\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:paper_supplied", + "value": "yes", + "description": "toilets:paper_supplied=yes is displayed as \"This toilet is equipped with toilet paper\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:paper_supplied", + "value": "no", + "description": "toilets:paper_supplied=no is displayed as \"You have to bring your own toilet paper to this toilet\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "yes", + "description": "toilets:handwashing=yes is displayed as \"These toilets have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "no", + "description": "toilets:handwashing=no is displayed as \"These toilets don't have a sink to wash your hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "electric_hand_dryer", + "description": "toilets:hands_drying=electric_hand_dryer is displayed as \"Electric hand dryers are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "paper_towel", + "description": "toilets:hands_drying=paper_towel is displayed as \"Paper towels are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel_cabinet", + "description": "toilets:hands_drying=towel_cabinet is displayed as \"A towel roll cabinet is available for drying hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel", + "description": "toilets:hands_drying=towel is displayed as \"A fabric towel available to dry your hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "no", + "description": "toilets:hands_drying=no is displayed as \"There are no hand drying facilities available.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "description", + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#description", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "amenity", + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "drinking_water", + "value": "yes", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "disused:amenity", + "value": "drinking_water", + "description": "Features with this tag are displayed by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "operational_status", + "description": "Values of `operational_status` are shown with \"The operational status is {operational_status}\" and can be updated. The question is \"Is this drinking water spot still operational?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "operational_status", + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "disused:amenity", + "description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "operational_status", + "value": "broken", + "description": "operational_status=broken is displayed as \"This drinking water is broken\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "operational_status", + "value": "closed", + "description": "operational_status=closed is displayed as \"This drinking water is closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "disused:amenity", + "value": "drinking_water", + "description": "disused:amenity=drinking_water is displayed as \"This drinking water is permanently closed\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "fee", + "value": "yes", + "description": "fee=yes is displayed as \"One needs to pay to use this drinking water point\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "fountain", + "value": "bubbler", + "description": "fountain=bubbler is displayed as \"This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bubbler.svg" + }, + { + "key": "fountain", + "value": "bottle_refill", + "description": "fountain=bottle_refill is displayed as \"This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/bottle.svg" + }, + { + "key": "man_made", + "value": "water_tap", + "description": "man_made=water_tap is displayed as \"This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type", + "icon_url": "./assets/layers/drinking_water/tap.svg" + }, + { + "key": "bottle", + "value": "yes", + "description": "bottle=yes is displayed as \"It is easy to refill water bottles\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "bottle", + "value": "no", + "description": "bottle=no is displayed as \"Water bottles may not fit\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "iced_water", + "value": "yes", + "description": "iced_water=yes is displayed as \"Ice-cold water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "cold_water", + "value": "yes", + "description": "cold_water=yes is displayed as \"Actively cooled water is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "room_temperature_water", + "value": "yes", + "description": "room_temperature_water=yes is displayed as \"Ambient temperature water (without active cooling or heating) is available here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "warm_water", + "value": "yes", + "description": "warm_water=yes is displayed as \"Warmed water is provided here; the water is not dangerously hot\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "hot_water", + "value": "yes", + "description": "hot_water=yes is displayed as \"Hot water is provided here\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "seasonal", + "value": "no", + "description": "seasonal=no is displayed as \"Available all around the year\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "seasonal", + "value": "summer", + "description": "seasonal=summer is displayed as \"Only available in summer\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "seasonal", + "value": "spring;summer;autumn", + "description": "seasonal=spring;summer;autumn is displayed as \"Closed during the winter\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal", + "icon_url": "./assets/layers/drinking_water/no_winter.svg" + }, + { + "key": "seasonal", + "description": "seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) is displayed as \"This drinking water fountain is closed this season. As such, the opening hours are not shown.\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "tourism", + "value": "artwork", + "description": "tourism=artwork is displayed as \"This drinking water point has an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "not:tourism:artwork", + "value": "yes", + "description": "not:tourism:artwork=yes is displayed as \"This drinking water point does not have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "tourism", + "description": "tourism= is displayed as \"This drinking water point probably doesn't have an integrated artwork\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artwork_type", + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artist:wikidata", + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_wikidata", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "artist_name", + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_name", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "website", + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_website", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "subject:wikidata", + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Drinking water", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_subject", + "icon_url": "./assets/layers/drinking_water/drips.svg" + }, + { + "key": "amenity", + "value": "fast_food", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "amenity", + "value": "restaurant", + "description": "Features with this tag are displayed by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "name", + "description": "Values of `name` are shown with \"The name of this business is {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Name", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "amenity", + "value": "fast_food", + "description": "amenity=fast_food is displayed as \"This is a fast-food business, focused on fast service. If seating is available, it is rather limited and functional.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "amenity", + "value": "restaurant", + "description": "amenity=restaurant is displayed as \"A restaurant, focused on creating a nice experience where one is served at the table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Fastfood_vs_restaurant", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "website", + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#website", + "icon_url": "./assets/layers/icons/website.svg" + }, + { + "key": "contact:website", + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#website", + "icon_url": "./assets/layers/icons/website.svg" + }, + { + "key": "email", + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#email", + "icon_url": "./assets/svg/envelope.svg" + }, + { + "key": "contact:email", + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#email", + "icon_url": "./assets/svg/envelope.svg" + }, + { + "key": "operator:email", + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#email", + "icon_url": "./assets/svg/envelope.svg" + }, + { + "key": "phone", + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" + }, + { + "key": "contact:phone", + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" + }, + { + "key": "wheelchair", + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "wheelchair", + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "wheelchair", + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "wheelchair", + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#wheelchair_access", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "description": "Values of `cuisine` are shown with \"This place mostly serves {cuisine}\" and can be updated. The question is \"What kind of food is served here?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "pizza", + "description": "cuisine=pizza is displayed as \"Pizzeria\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "friture", + "description": "cuisine=friture is displayed as \"Friture\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "pasta", + "description": "cuisine=pasta is displayed as \"Serves mainly pasta\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "kebab", + "description": "cuisine=kebab is displayed as \"Kebab shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "sandwich", + "description": "cuisine=sandwich is displayed as \"Sandwich shop\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "burger", + "description": "cuisine=burger is displayed as \"Burgersrestaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "sushi", + "description": "cuisine=sushi is displayed as \"Sushi restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "coffee", + "description": "cuisine=coffee is displayed as \"Coffeebar\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "italian", + "description": "cuisine=italian is displayed as \"Italian restaurant (which serves more than pasta and pizza)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "french", + "description": "cuisine=french is displayed as \"French restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "chinese", + "description": "cuisine=chinese is displayed as \"Chinese\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "greek", + "description": "cuisine=greek is displayed as \"Greek\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "indian", + "description": "cuisine=indian is displayed as \"Indian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "turkish", + "description": "cuisine=turkish is displayed as \"Turkish restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "thai", + "description": "cuisine=thai is displayed as \"Thai restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "mexican ", + "description": "cuisine=mexican is displayed as \"Mexican dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "japanese ", + "description": "cuisine=japanese is displayed as \"Japanese dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "chicken ", + "description": "cuisine=chicken is displayed as \"Chicken based dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "cuisine", + "value": "seafood ", + "description": "cuisine=seafood is displayed as \"Seafood dishes are served here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Cuisine", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "image", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "panoramax", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "mapillary", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "wikidata", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "wikipedia", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#images", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "website:menu", + "description": "Values of `website:menu` are shown with \"{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage is the menu published?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#menu_website", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "reservation", + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "reservation", + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "reservation", + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "reservation", + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "takeaway", + "value": "only", + "description": "takeaway=only is displayed as \"This is a take-away only business\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "takeaway", + "value": "yes", + "description": "takeaway=yes is displayed as \"Take-away is possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "takeaway", + "value": "no", + "description": "takeaway=no is displayed as \"Take-away is not possible here\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Takeaway", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "delivery", + "value": "yes", + "description": "delivery=yes is displayed as \"This business does home delivery (possibly via a third party)\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "delivery", + "value": "no", + "description": "delivery=no is displayed as \"This business does not deliver at home\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#delivery", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "drive_through", + "value": "yes", + "description": "drive_through=yes is displayed as \"This fast-food restaurant has a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "drive_through", + "value": "no", + "description": "drive_through=no is displayed as \"This fast-food restaurant does not have a drive-through\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "opening_hours:drive_through", + "description": "Values of `opening_hours:drive_through` are shown with \"

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}\" and can be updated. The question is \"What are the opening hours of the drive-through?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "opening_hours:drive_through", + "description": "opening_hours:drive_through= is displayed as \"The opening hours of the drive-through are the same as the restaurant\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#drive_through_opening_hours", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegetarian", + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg;cross_bottom_right:red" + }, + { + "key": "diet:vegetarian", + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Some vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegetarian", + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" + }, + { + "key": "diet:vegetarian", + "value": "only", + "description": "diet:vegetarian=only is displayed as \"All dishes are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/Vegetarian-mark.svg" + }, + { + "key": "diet:vegetarian", + "value": "on_demand", + "description": "diet:vegetarian=on_demand is displayed as \"Some dishes might be adapted to a vegetarian version, but this should be demanded\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegetarian__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "limited", + "description": "diet:vegan=limited is displayed as \"Some vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "only", + "description": "diet:vegan=only is displayed as \"All dishes are vegan\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "on_demand", + "description": "diet:vegan=on_demand is displayed as \"Some dishes might be adapted to a vegan version if asked for\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Vegan__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:halal", + "value": "no", + "description": "diet:halal=no is displayed as \"There are no halal options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:halal", + "value": "limited", + "description": "diet:halal=limited is displayed as \"There is a small halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:halal", + "value": "yes", + "description": "diet:halal=yes is displayed as \"There is a halal menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:halal", + "value": "only", + "description": "diet:halal=only is displayed as \"Only halal options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#halal__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "organic", + "value": "no", + "description": "organic=no is displayed as \"There are no organic options available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "organic", + "value": "yes", + "description": "organic=yes is displayed as \"There is an organic menu\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "organic", + "value": "only", + "description": "organic=only is displayed as \"Only organic options are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#organic__no_friture_", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegetarian", + "value": "only", + "description": "diet:vegetarian=only is displayed as \"Serves only vegetarian snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegetarian", + "value": "yes", + "description": "diet:vegetarian=yes is displayed as \"Vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegetarian", + "value": "limited", + "description": "diet:vegetarian=limited is displayed as \"Only a small selection of snacks are vegetarian\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegetarian", + "value": "no", + "description": "diet:vegetarian=no is displayed as \"No vegetarian snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegetarian", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "only", + "description": "diet:vegan=only is displayed as \"Serves only vegan snacks and burgers\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "yes", + "description": "diet:vegan=yes is displayed as \"Vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "limited", + "description": "diet:vegan=limited is displayed as \"A small selection of vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:vegan", + "value": "no", + "description": "diet:vegan=no is displayed as \"No vegan snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_vegan", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "organic", + "value": "yes", + "description": "organic=yes is displayed as \"Organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "organic", + "value": "no", + "description": "organic=no is displayed as \"No organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "organic", + "value": "only", + "description": "organic=only is displayed as \"Only organic snacks are available\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_organic", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "friture:oil", + "value": "vegetable", + "description": "friture:oil=vegetable is displayed as \"The frying is done with vegetable oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "friture:oil", + "value": "animal", + "description": "friture:oil=animal is displayed as \"The frying is done with animal oil\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_oil", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "reusable_packaging:accept", + "value": "yes", + "description": "reusable_packaging:accept=yes is displayed as \"You can bring your own containers to get your order, saving on single-use packaging material and thus waste\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "reusable_packaging:accept", + "value": "no", + "description": "reusable_packaging:accept=no is displayed as \"Bringing your own container is not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "reusable_packaging:accept", + "value": "only", + "description": "reusable_packaging:accept=only is displayed as \"You must bring your own container to order here.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#friture_take_your_container", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:sugar_free", + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:sugar_free", + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:sugar_free", + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:sugar_free", + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#sugar_free", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:gluten_free", + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" + }, + { + "key": "diet:gluten_free", + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" + }, + { + "key": "diet:gluten_free", + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:gluten_free", + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#gluten_free", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:lactose_free", + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" + }, + { + "key": "diet:lactose_free", + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" + }, + { + "key": "diet:lactose_free", + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "diet:lactose_free", + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#lactose_free", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "smoking", + "value": "yes", + "description": "smoking=yes is displayed as \"Smoking is allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#smoking", + "icon_url": "./assets/layers/questions/smoking.svg" + }, + { + "key": "smoking", + "value": "no", + "description": "smoking=no is displayed as \"Smoking is not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#smoking", + "icon_url": "./assets/layers/questions/no_smoking.svg" + }, + { + "key": "smoking", + "value": "outside", + "description": "smoking=outside is displayed as \"Smoking is allowed outside.\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#smoking", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "service:electricity", + "value": "yes", + "description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "service:electricity", + "value": "limited", + "description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "service:electricity", + "value": "ask", + "description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "service:electricity", + "value": "no", + "description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#service_electricity", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "outdoor_seating", + "value": "yes", + "description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#seating", + "icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg" + }, + { + "key": "indoor_seating", + "value": "yes", + "description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#seating", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "dog", + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" + }, + { + "key": "dog", + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" + }, + { + "key": "dog", + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" + }, + { + "key": "dog", + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" + }, + { + "key": "dog", + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" + }, + { + "key": "internet_access", + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "wifi" + }, + { + "key": "internet_access", + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "wifi;cross_bottom_right:red" + }, + { + "key": "internet_access", + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "internet_access", + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "computer" + }, + { + "key": "internet_access", + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "internet_access", + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "internet_access:fee", + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "internet_access:fee", + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "internet_access:fee", + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_fee", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "internet_access:ssid", + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "internet_access:ssid", + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Restaurants and fast food", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#internet_ssid", + "icon_url": "./assets/layers/food/restaurant.svg" + }, + { + "key": "tourism", + "value": "viewpoint", + "description": "Features with this tag are displayed by layer Viewpoint", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/viewpoint.md", + "icon_url": "./assets/layers/viewpoint/viewpoint.svg" + }, + { + "key": "description", + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Do you want to add a description?\" by layer Viewpoint", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/viewpoint.md#viewpoint_description", + "icon_url": "./assets/layers/viewpoint/viewpoint.svg" + }, + { + "key": "amenity", + "value": "binoculars", + "description": "Features with this tag are displayed by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md", + "icon_url": "./assets/layers/binocular/telescope.svg" + }, + { + "key": "charge", + "description": "Values of `charge` are shown with \"Using these binoculars costs {charge}\" and can be updated. The question is \"How much does one have to pay to use these binoculars?\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge", + "icon_url": "./assets/layers/binocular/telescope.svg" + }, + { + "key": "fee", + "value": "no", + "description": "fee=no & charge= is displayed as \"Free to use\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge", + "icon_url": "./assets/layers/binocular/telescope.svg" + }, + { + "key": "charge", + "description": "fee=no & charge= is displayed as \"Free to use\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge", + "icon_url": "./assets/layers/binocular/telescope.svg" }, { "key": "direction", - "description": "Layer 'Binoculars' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Ski pistes and aerialways')" + "description": "Values of `direction` are shown with \"Looks towards {direction}°\" and can be updated. The question is \"When looking through this binocular, in what direction does one look?\" by layer Binoculars", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_direction", + "icon_url": "./assets/layers/binocular/telescope.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_sport_pitches.json b/Docs/TagInfo/mapcomplete_sport_pitches.json index 5122c28aaa..2e0f63817f 100644 --- a/Docs/TagInfo/mapcomplete_sport_pitches.json +++ b/Docs/TagInfo/mapcomplete_sport_pitches.json @@ -7,206 +7,289 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/sport_pitch/table_tennis.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "leisure", - "description": "The MapComplete theme Sport pitches has a layer Sport pitches showing features with this tag", - "value": "pitch" + "value": "pitch", + "description": "Features with this tag are displayed by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "id", - "description": "Layer 'Sport pitches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Sport pitches') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "panoramax", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "mapillary", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "wikidata", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "wikipedia", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'sport' (in the mapcomplete.org theme 'Sport pitches')" + "description": "Values of `sport` are shown with \"{sport} is played here\" and can be updated. The question is \"Which sport can be played here?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=basketball with a fixed text, namely 'Basketball is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "basketball" + "value": "basketball", + "description": "sport=basketball is displayed as \"Basketball is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=soccer with a fixed text, namely 'Soccer is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "soccer" + "value": "soccer", + "description": "sport=soccer is displayed as \"Soccer is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=table_tennis with a fixed text, namely 'This is a pingpong table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "table_tennis" + "value": "table_tennis", + "description": "sport=table_tennis is displayed as \"This is a pingpong table\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=tennis with a fixed text, namely 'Tennis is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "tennis" + "value": "tennis", + "description": "sport=tennis is displayed as \"Tennis is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=korfball with a fixed text, namely 'Korfball is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "korfball" + "value": "korfball", + "description": "sport=korfball is displayed as \"Korfball is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=basket with a fixed text, namely 'Basketball is played here' (in the mapcomplete.org theme 'Sport pitches')", - "value": "basket" + "value": "basket", + "description": "sport=basket is displayed as \"Basketball is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=skateboard with a fixed text, namely 'This is a skatepark' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "skateboard" + "value": "skateboard", + "description": "sport=skateboard is displayed as \"This is a skatepark\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=equestrian with a fixed text, namely 'This is a horse riding arena' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "equestrian" + "value": "equestrian", + "description": "sport=equestrian is displayed as \"This is a horse riding arena\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "hoops", - "description": "Layer 'Sport pitches' shows hoops=1 with a fixed text, namely 'This basketball pitch has a single hoop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)", - "value": "1" + "value": "1", + "description": "hoops=1 is displayed as \"This basketball pitch has a single hoop\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "hoops", - "description": "Layer 'Sport pitches' shows hoops=2 with a fixed text, namely 'This basketball pitch has two hoops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)", - "value": "2" + "value": "2", + "description": "hoops=2 is displayed as \"This basketball pitch has two hoops\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "hoops", - "description": "Layer 'Sport pitches' shows hoops=4 with a fixed text, namely 'This basketball pitch has four hoops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)", - "value": "4" + "value": "4", + "description": "hoops=4 is displayed as \"This basketball pitch has four hoops\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "hoops", - "description": "Layer 'Sport pitches' shows hoops~.+ with a fixed text, namely 'This basketball pitch has {hoops} hoops' (in the mapcomplete.org theme 'Sport pitches') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)" + "description": "hoops~.+ is displayed as \"This basketball pitch has {hoops} hoops\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'Sport pitches')" + "description": "Values of `surface` are shown with \"The surface is {surface}\" and can be updated. The question is \"Which is the surface of this sport pitch?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=grass with a fixed text, namely 'The surface is grass' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "grass" + "value": "grass", + "description": "surface=grass is displayed as \"The surface is grass\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=sand with a fixed text, namely 'The surface is sand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "sand" + "value": "sand", + "description": "surface=sand is displayed as \"The surface is sand\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=paving_stones with a fixed text, namely 'The surface is paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "paving_stones" + "value": "paving_stones", + "description": "surface=paving_stones is displayed as \"The surface is paving stones\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=asphalt with a fixed text, namely 'The surface is asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "asphalt" + "value": "asphalt", + "description": "surface=asphalt is displayed as \"The surface is asphalt\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=concrete with a fixed text, namely 'The surface is concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "concrete" + "value": "concrete", + "description": "surface=concrete is displayed as \"The surface is concrete\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=fine_gravel with a fixed text, namely 'The surface is fine gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "surface=fine_gravel is displayed as \"The surface is fine gravel\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=tartan with a fixed text, namely 'The surface of this track is Tartan, a synthetic, slightly springy, porous surface' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "tartan" + "value": "tartan", + "description": "surface=tartan is displayed as \"The surface of this track is Tartan, a synthetic, slightly springy, porous surface\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=limited with a fixed text, namely 'Limited access (e.g. only with an appointment, during certain hours, …)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "limited" + "value": "limited", + "description": "access=limited is displayed as \"Limited access (e.g. only with an appointment, during certain hours, …)\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=members with a fixed text, namely 'Only accessible for members of the club' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "members" + "value": "members", + "description": "access=members is displayed as \"Only accessible for members of the club\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=private with a fixed text, namely 'Private - not accessible to the public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Private - not accessible to the public\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Sport pitches')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "reservation", - "description": "Layer 'Sport pitches' shows reservation=required with a fixed text, namely 'Making an appointment is obligatory to use this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access!=public & access!=private & access!=members)", - "value": "required" + "value": "required", + "description": "reservation=required is displayed as \"Making an appointment is obligatory to use this sport pitch\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "reservation", - "description": "Layer 'Sport pitches' shows reservation=recommended with a fixed text, namely 'Making an appointment is recommended when using this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access!=public & access!=private & access!=members)", - "value": "recommended" + "value": "recommended", + "description": "reservation=recommended is displayed as \"Making an appointment is recommended when using this sport pitch\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "reservation", - "description": "Layer 'Sport pitches' shows reservation=yes with a fixed text, namely 'Making an appointment is possible, but not necessary to use this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access!=public & access!=private & access!=members)", - "value": "yes" + "value": "yes", + "description": "reservation=yes is displayed as \"Making an appointment is possible, but not necessary to use this sport pitch\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "reservation", - "description": "Layer 'Sport pitches' shows reservation=no with a fixed text, namely 'Making an appointment is not possible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access!=public & access!=private & access!=members)", - "value": "no" + "value": "no", + "description": "reservation=no is displayed as \"Making an appointment is not possible\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "phone", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Sport pitches')" + "description": "Values of `phone` are shown with \"{phone}\" and can be updated. The question is \"What is the phone number of the operator?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_phone", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "email", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Sport pitches')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of the operator?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_email", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access~.+)" + "description": "Values of `opening_hours` are shown with \"Openingsuren: {opening_hours_table()}\" and can be updated. The question is \"When is this pitch accessible?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows opening_hours= with a fixed text, namely 'Always accessible' (in the mapcomplete.org theme 'Sport pitches') Picking this answer will delete the key opening_hours. (This is only shown if access~.+)", - "value": "" + "description": "opening_hours= is displayed as \"Always accessible\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows opening_hours=24/7 with a fixed text, namely 'Always accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access~.+)", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"Always accessible\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_sports.json b/Docs/TagInfo/mapcomplete_sports.json index ba12230f5f..a934811a3c 100644 --- a/Docs/TagInfo/mapcomplete_sports.json +++ b/Docs/TagInfo/mapcomplete_sports.json @@ -7,2627 +7,3366 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/sports/sport.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "leisure", - "description": "The MapComplete theme Sports has a layer Sport pitches showing features with this tag", - "value": "pitch" + "value": "pitch", + "description": "Features with this tag are displayed by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "id", - "description": "Layer 'Sport pitches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Sports') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Sport pitches, Fitness Centres, Fitness Stations, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Sport pitches, Fitness Centres, Fitness Stations, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "panoramax", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Sport pitches, Fitness Centres, Fitness Stations, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "mapillary", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Sport pitches, Fitness Centres, Fitness Stations, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "wikidata", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Sport pitches, Fitness Centres, Fitness Stations, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "wikipedia", - "description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Sport pitches, Fitness Centres, Fitness Stations, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'sport' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `sport` are shown with \"{sport} is played here\" and can be updated. The question is \"Which sport can be played here?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=basketball with a fixed text, namely 'Basketball is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "basketball" + "value": "basketball", + "description": "sport=basketball is displayed as \"Basketball is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=soccer with a fixed text, namely 'Soccer is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "soccer" + "value": "soccer", + "description": "sport=soccer is displayed as \"Soccer is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=table_tennis with a fixed text, namely 'This is a pingpong table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "table_tennis" + "value": "table_tennis", + "description": "sport=table_tennis is displayed as \"This is a pingpong table\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=tennis with a fixed text, namely 'Tennis is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "tennis" + "value": "tennis", + "description": "sport=tennis is displayed as \"Tennis is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=korfball with a fixed text, namely 'Korfball is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "korfball" + "value": "korfball", + "description": "sport=korfball is displayed as \"Korfball is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=basket with a fixed text, namely 'Basketball is played here' (in the mapcomplete.org theme 'Sports')", - "value": "basket" + "value": "basket", + "description": "sport=basket is displayed as \"Basketball is played here\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=skateboard with a fixed text, namely 'This is a skatepark' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "skateboard" + "value": "skateboard", + "description": "sport=skateboard is displayed as \"This is a skatepark\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "sport", - "description": "Layer 'Sport pitches' shows sport=equestrian with a fixed text, namely 'This is a horse riding arena' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "equestrian" + "value": "equestrian", + "description": "sport=equestrian is displayed as \"This is a horse riding arena\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "hoops", - "description": "Layer 'Sport pitches' shows hoops=1 with a fixed text, namely 'This basketball pitch has a single hoop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)", - "value": "1" + "value": "1", + "description": "hoops=1 is displayed as \"This basketball pitch has a single hoop\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "hoops", - "description": "Layer 'Sport pitches' shows hoops=2 with a fixed text, namely 'This basketball pitch has two hoops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)", - "value": "2" + "value": "2", + "description": "hoops=2 is displayed as \"This basketball pitch has two hoops\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "hoops", - "description": "Layer 'Sport pitches' shows hoops=4 with a fixed text, namely 'This basketball pitch has four hoops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)", - "value": "4" + "value": "4", + "description": "hoops=4 is displayed as \"This basketball pitch has four hoops\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "hoops", - "description": "Layer 'Sport pitches' shows hoops~.+ with a fixed text, namely 'This basketball pitch has {hoops} hoops' (in the mapcomplete.org theme 'Sports') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)" + "description": "hoops~.+ is displayed as \"This basketball pitch has {hoops} hoops\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `surface` are shown with \"The surface is {surface}\" and can be updated. The question is \"Which is the surface of this sport pitch?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=grass with a fixed text, namely 'The surface is grass' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "grass" + "value": "grass", + "description": "surface=grass is displayed as \"The surface is grass\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=sand with a fixed text, namely 'The surface is sand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "sand" + "value": "sand", + "description": "surface=sand is displayed as \"The surface is sand\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=paving_stones with a fixed text, namely 'The surface is paving stones' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "paving_stones" + "value": "paving_stones", + "description": "surface=paving_stones is displayed as \"The surface is paving stones\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=asphalt with a fixed text, namely 'The surface is asphalt' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "asphalt" + "value": "asphalt", + "description": "surface=asphalt is displayed as \"The surface is asphalt\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=concrete with a fixed text, namely 'The surface is concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "concrete" + "value": "concrete", + "description": "surface=concrete is displayed as \"The surface is concrete\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=fine_gravel with a fixed text, namely 'The surface is fine gravel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "fine_gravel" + "value": "fine_gravel", + "description": "surface=fine_gravel is displayed as \"The surface is fine gravel\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "surface", - "description": "Layer 'Sport pitches' shows surface=tartan with a fixed text, namely 'The surface of this track is Tartan, a synthetic, slightly springy, porous surface' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "tartan" + "value": "tartan", + "description": "surface=tartan is displayed as \"The surface of this track is Tartan, a synthetic, slightly springy, porous surface\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=limited with a fixed text, namely 'Limited access (e.g. only with an appointment, during certain hours, …)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "limited" + "value": "limited", + "description": "access=limited is displayed as \"Limited access (e.g. only with an appointment, during certain hours, …)\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=members with a fixed text, namely 'Only accessible for members of the club' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "members" + "value": "members", + "description": "access=members is displayed as \"Only accessible for members of the club\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=private with a fixed text, namely 'Private - not accessible to the public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Private - not accessible to the public\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "access", - "description": "Layer 'Sport pitches' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Sports')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "reservation", - "description": "Layer 'Sport pitches' shows reservation=required with a fixed text, namely 'Making an appointment is obligatory to use this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if access!=public & access!=private & access!=members)", - "value": "required" + "value": "required", + "description": "reservation=required is displayed as \"Making an appointment is obligatory to use this sport pitch\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "reservation", - "description": "Layer 'Sport pitches' shows reservation=recommended with a fixed text, namely 'Making an appointment is recommended when using this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if access!=public & access!=private & access!=members)", - "value": "recommended" + "value": "recommended", + "description": "reservation=recommended is displayed as \"Making an appointment is recommended when using this sport pitch\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "reservation", - "description": "Layer 'Sport pitches' shows reservation=yes with a fixed text, namely 'Making an appointment is possible, but not necessary to use this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if access!=public & access!=private & access!=members)", - "value": "yes" + "value": "yes", + "description": "reservation=yes is displayed as \"Making an appointment is possible, but not necessary to use this sport pitch\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "reservation", - "description": "Layer 'Sport pitches' shows reservation=no with a fixed text, namely 'Making an appointment is not possible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if access!=public & access!=private & access!=members)", - "value": "no" + "value": "no", + "description": "reservation=no is displayed as \"Making an appointment is not possible\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "phone", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `phone` are shown with \"{phone}\" and can be updated. The question is \"What is the phone number of the operator?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_phone", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "email", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of the operator?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_email", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Sports') (This is only shown if access~.+)" + "description": "Values of `opening_hours` are shown with \"Openingsuren: {opening_hours_table()}\" and can be updated. The question is \"When is this pitch accessible?\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows opening_hours= with a fixed text, namely 'Always accessible' (in the mapcomplete.org theme 'Sports') Picking this answer will delete the key opening_hours. (This is only shown if access~.+)", - "value": "" + "description": "opening_hours= is displayed as \"Always accessible\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows opening_hours=24/7 with a fixed text, namely 'Always accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if access~.+)", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"Always accessible\" by layer Sport pitches", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours", + "icon_url": "./assets/layers/sport_pitch/sport_pitch.svg" }, { "key": "leisure", - "description": "The MapComplete theme Sports has a layer Fitness Centres showing features with this tag", - "value": "fitness_centre" - }, - { - "key": "id", - "description": "Layer 'Fitness Centres' 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 'Sports') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "fitness_centre", + "description": "Features with this tag are displayed by layer Fitness Centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "name", - "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `name` are shown with \"This fitness centre is called {name}\" and can be updated. The question is \"What is the name of this fitness centre?\" by layer Fitness Centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#name", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "noname", - "description": "Layer 'Fitness Centres' shows noname=yes with a fixed text, namely 'This fitness centre has no name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" - }, - { - "key": "image", - "description": "The layer 'Fitness Centres allows to upload images and adds them under the 'panoramax'-tag (and 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 'Fitness Centres allows to upload images and adds them under the 'panoramax'-tag (and 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 'Fitness Centres allows to upload images and adds them under the 'panoramax'-tag (and 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 'Fitness Centres allows to upload images and adds them under the 'panoramax'-tag (and 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 'Fitness Centres allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "yes", + "description": "noname=yes is displayed as \"This fitness centre has no name\" by layer Fitness Centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#name", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "phone", - "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Fitness Centres, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Fitness Centres' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Sports')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Fitness Centres, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Fitness Centres, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Fitness Centres' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Sports')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layers Fitness Centres, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Fitness Centres' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Sports')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layers Fitness Centres, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layers Fitness Centres, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Fitness Centres' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Sports')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layers Fitness Centres, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "opening_hours", - "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Fitness Centres, Fitness Stations, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#opening_hours", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "opening_hours", - "description": "Layer 'Fitness Centres' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Sports')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Fitness Centres, Fitness Stations, Sports centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#opening_hours", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "wheelchair", - "description": "Layer 'Fitness Centres' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layers Fitness Centres, Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#wheelchair_access", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "wheelchair", - "description": "Layer 'Fitness Centres' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layers Fitness Centres, Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#wheelchair_access", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "wheelchair", - "description": "Layer 'Fitness Centres' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layers Fitness Centres, Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#wheelchair_access", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "wheelchair", - "description": "Layer 'Fitness Centres' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layers Fitness Centres, Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#wheelchair_access", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "level", - "description": "Layer 'Fitness Centres' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Sports') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Fitness Centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#single_level", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "location", - "description": "Layer 'Fitness Centres' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Sports') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Fitness Centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#single_level", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "level", - "description": "Layer 'Fitness Centres' 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 'Sports') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Fitness Centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#single_level", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "level", - "description": "Layer 'Fitness Centres' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Sports') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Fitness Centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#single_level", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "level", - "description": "Layer 'Fitness Centres' 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 'Sports') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Fitness Centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#single_level", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "level", - "description": "Layer 'Fitness Centres' 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 'Sports') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Fitness Centres, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_centre.md#single_level", + "icon_url": "./assets/layers/fitness_centre/gym.svg" }, { "key": "leisure", - "description": "The MapComplete theme Sports has a layer Fitness Stations showing features with this tag", - "value": "fitness_station" - }, - { - "key": "id", - "description": "Layer 'Fitness Stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Sports') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Fitness Stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "fitness_station", + "description": "Features with this tag are displayed by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md", + "icon_url": "./assets/layers/fitness_station/fitness.svg" }, { "key": "name", - "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `name` are shown with \"This fitness station is called {name}\" and can be updated. The question is \"What is the name of this fitness station?\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#name", + "icon_url": "./assets/layers/fitness_station/fitness.svg" }, { "key": "noname", - "description": "Layer 'Fitness Stations' shows noname=yes with a fixed text, namely 'This fitness station doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" + "value": "yes", + "description": "noname=yes is displayed as \"This fitness station doesn't have a name\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#name", + "icon_url": "./assets/layers/fitness_station/fitness.svg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=horizontal_bar with a fixed text, namely 'This fitness station has a horizontal bar, high enough for pull-ups.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "horizontal_bar" + "value": "horizontal_bar", + "description": "fitness_station=horizontal_bar is displayed as \"This fitness station has a horizontal bar, high enough for pull-ups.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Trimm-Dich-Pfad_Grünwalder_Forst_Klimmzüge.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=sign with a fixed text, namely 'This fitness station has a sign with instructions for a specific exercise.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "sign" + "value": "sign", + "description": "fitness_station=sign is displayed as \"This fitness station has a sign with instructions for a specific exercise.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Outdoor_fitness_station_sign.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=sit-up with a fixed text, namely 'This fitness station has a facility for sit-ups.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "sit-up" + "value": "sit-up", + "description": "fitness_station=sit-up is displayed as \"This fitness station has a facility for sit-ups.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Inclined_sit-up_bench.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=push-up with a fixed text, namely 'This fitness station has a facility for push-ups. Usually consists of one or more low horizontal bars.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "push-up" + "value": "push-up", + "description": "fitness_station=push-up is displayed as \"This fitness station has a facility for push-ups. Usually consists of one or more low horizontal bars.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Push-up_bars.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=stretch_bars with a fixed text, namely 'This fitness station has bars for stretching.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "stretch_bars" + "value": "stretch_bars", + "description": "fitness_station=stretch_bars is displayed as \"This fitness station has bars for stretching.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Fitness_station_stretch_bars.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=hyperextension with a fixed text, namely 'This fitness station has a station for making hyperextensions.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "hyperextension" + "value": "hyperextension", + "description": "fitness_station=hyperextension is displayed as \"This fitness station has a station for making hyperextensions.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Inclined_sit-up_and_hyperextension_bench.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=rings with a fixed text, namely 'This fitness station has rings for gymnastic exercises.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "rings" + "value": "rings", + "description": "fitness_station=rings is displayed as \"This fitness station has rings for gymnastic exercises.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Exercise9159.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=horizontal_ladder with a fixed text, namely 'This fitness station has a horizontal ladder, also known as monkey bars.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "horizontal_ladder" + "value": "horizontal_ladder", + "description": "fitness_station=horizontal_ladder is displayed as \"This fitness station has a horizontal ladder, also known as monkey bars.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Horizontal_ladder.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=wall_bars with a fixed text, namely 'This fitness station has wall bars to climb on.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "wall_bars" + "value": "wall_bars", + "description": "fitness_station=wall_bars is displayed as \"This fitness station has wall bars to climb on.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/RIAN_archive_493268_Sports_at_a_kindergarten.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=slalom with a fixed text, namely 'This fitness station has posts for performing slalom exercises.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "slalom" + "value": "slalom", + "description": "fitness_station=slalom is displayed as \"This fitness station has posts for performing slalom exercises.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Fitness_station_slalom.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=stepping_stones with a fixed text, namely 'This fitness station has stepping stones.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "stepping_stones" + "value": "stepping_stones", + "description": "fitness_station=stepping_stones is displayed as \"This fitness station has stepping stones.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Fitness_station_stepping_stone.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=leapfrog with a fixed text, namely 'This fitness station has cones for performing leapfrog jumps.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "leapfrog" + "value": "leapfrog", + "description": "fitness_station=leapfrog is displayed as \"This fitness station has cones for performing leapfrog jumps.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Fitness_station_leapfrog.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=beam_jump with a fixed text, namely 'This fitness station has beams to jump over.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "beam_jump" + "value": "beam_jump", + "description": "fitness_station=beam_jump is displayed as \"This fitness station has beams to jump over.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Fitness_station_beam_jump.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=hurdling with a fixed text, namely 'This fitness station has hurdles to cross.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "hurdling" + "value": "hurdling", + "description": "fitness_station=hurdling is displayed as \"This fitness station has hurdles to cross.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Fitness_station_hurdling.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=wall with a fixed text, namely 'This fitness station has a wall to climb on.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "wall" + "value": "wall", + "description": "fitness_station=wall is displayed as \"This fitness station has a wall to climb on.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Fitness_station_wall.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=balance_beam with a fixed text, namely 'This fitness station has a balance beam.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "balance_beam" + "value": "balance_beam", + "description": "fitness_station=balance_beam is displayed as \"This fitness station has a balance beam.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Exercise9170.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=log_lifting with a fixed text, namely 'This fitness station has a log with a handle on the end to lift.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "log_lifting" + "value": "log_lifting", + "description": "fitness_station=log_lifting is displayed as \"This fitness station has a log with a handle on the end to lift.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Log_lifting_exercise.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=captains_chair with a fixed text, namely 'This fitness station has a chair with only elbow supports and a rear (without seat), for performing leg raises.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "captains_chair" + "value": "captains_chair", + "description": "fitness_station=captains_chair is displayed as \"This fitness station has a chair with only elbow supports and a rear (without seat), for performing leg raises.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Captains_chair.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=box with a fixed text, namely 'This fitness station has a box that can be used for jumping.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "box" + "value": "box", + "description": "fitness_station=box is displayed as \"This fitness station has a box that can be used for jumping.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Exercise_Box.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=battling_ropes with a fixed text, namely 'This fitness station has battling ropes.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "battling_ropes" + "value": "battling_ropes", + "description": "fitness_station=battling_ropes is displayed as \"This fitness station has battling ropes.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Battling_ropes.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=excercise_bike with a fixed text, namely 'This fitness station has a stationary bicycle.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "excercise_bike" + "value": "excercise_bike", + "description": "fitness_station=excercise_bike is displayed as \"This fitness station has a stationary bicycle.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Outdoor_stationary_bicycle.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=elliptical_trainer with a fixed text, namely 'This fitness station has a cross-trainer.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "elliptical_trainer" + "value": "elliptical_trainer", + "description": "fitness_station=elliptical_trainer is displayed as \"This fitness station has a cross-trainer.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/07-12-2016,_Fitness_trail,_Parque_da_Alfarrobeira,_Albufeira_2.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=air_walker with a fixed text, namely 'This fitness station has an air walker.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "air_walker" + "value": "air_walker", + "description": "fitness_station=air_walker is displayed as \"This fitness station has an air walker.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Ansan_Park_beind_the_city_hall_022.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=rower with a fixed text, namely 'This fitness station has a rower.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "rower" + "value": "rower", + "description": "fitness_station=rower is displayed as \"This fitness station has a rower.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Annecy_-_rower.jpg" }, { "key": "fitness_station", - "description": "Layer 'Fitness Stations' shows fitness_station=slackline with a fixed text, namely 'This fitness station has a slackline.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "slackline" + "value": "slackline", + "description": "fitness_station=slackline is displayed as \"This fitness station has a slackline.\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#type", + "icon_url": "./assets/layers/fitness_station/Slacklineanlage_im_Dietenbachpark.jpg" }, { "key": "operator", - "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `operator` are shown with \"The fitness station is maintained by {operator}.\" and can be updated. The question is \"Who maintains this fitness station?\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#operator", + "icon_url": "./assets/layers/fitness_station/fitness.svg" }, { "key": "opening_hours", - "description": "Layer 'Fitness Stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "opening_hours", - "description": "Layer 'Fitness Stations' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "24/7" - }, - { - "key": "opening_hours", - "description": "Layer 'Fitness Stations' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Sports')", - "value": "closed" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Fitness Stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fitness_station.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "leisure", - "description": "The MapComplete theme Sports has a layer Sports centres showing features with this tag", - "value": "sports_centre" - }, - { - "key": "id", - "description": "Layer 'Sports centres' 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 'Sports') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Sports centres allows to upload images and adds them under the 'panoramax'-tag (and 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 'Sports centres allows to upload images and adds them under the 'panoramax'-tag (and 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 'Sports centres allows to upload images and adds them under the 'panoramax'-tag (and 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 'Sports centres allows to upload images and adds them under the 'panoramax'-tag (and 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 'Sports centres allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "opening_hours", - "description": "Layer 'Sports centres' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "opening_hours", - "description": "Layer 'Sports centres' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Sports')", - "value": "closed" - }, - { - "key": "phone", - "description": "Layer 'Sports centres' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "contact:phone", - "description": "Layer 'Sports centres' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "website", - "description": "Layer 'Sports centres' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "contact:website", - "description": "Layer 'Sports centres' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "email", - "description": "Layer 'Sports centres' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "contact:email", - "description": "Layer 'Sports centres' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "operator:email", - "description": "Layer 'Sports centres' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "wheelchair", - "description": "Layer 'Sports centres' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Sports centres' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Sports centres' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Sports centres' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "no" + "value": "sports_centre", + "description": "Features with this tag are displayed by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows and asks freeform values for key 'sport' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `sport` are shown with \"Sports played here: {sport}\" and can be updated. The question is \"What sports are played at this venue?\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=9pin with a fixed text, namely 'Nine-pin bowling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "9pin" + "value": "9pin", + "description": "sport=9pin is displayed as \"Nine-pin bowling\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=10pin with a fixed text, namely 'Ten-pin bowling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "10pin" + "value": "10pin", + "description": "sport=10pin is displayed as \"Ten-pin bowling\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=aerobics with a fixed text, namely 'Aerobics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "aerobics" + "value": "aerobics", + "description": "sport=aerobics is displayed as \"Aerobics\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=american_football with a fixed text, namely 'American football' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "american_football" + "value": "american_football", + "description": "sport=american_football is displayed as \"American football\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=aikido with a fixed text, namely 'Aikido' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "aikido" + "value": "aikido", + "description": "sport=aikido is displayed as \"Aikido\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=archery with a fixed text, namely 'Archery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "archery" + "value": "archery", + "description": "sport=archery is displayed as \"Archery\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=athletics with a fixed text, namely 'Athletics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "athletics" + "value": "athletics", + "description": "sport=athletics is displayed as \"Athletics\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=australian_football with a fixed text, namely 'Australian rules football' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "australian_football" + "value": "australian_football", + "description": "sport=australian_football is displayed as \"Australian rules football\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=badminton with a fixed text, namely 'Badminton' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "badminton" + "value": "badminton", + "description": "sport=badminton is displayed as \"Badminton\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=bandy with a fixed text, namely 'Bandy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "bandy" + "value": "bandy", + "description": "sport=bandy is displayed as \"Bandy\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=base with a fixed text, namely 'BASE jumping' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "base" + "value": "base", + "description": "sport=base is displayed as \"BASE jumping\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=baseball with a fixed text, namely 'Baseball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "baseball" + "value": "baseball", + "description": "sport=baseball is displayed as \"Baseball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=basketball with a fixed text, namely 'Basketball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "basketball" + "value": "basketball", + "description": "sport=basketball is displayed as \"Basketball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=beachvolleyball with a fixed text, namely 'Beachvolleyball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "beachvolleyball" + "value": "beachvolleyball", + "description": "sport=beachvolleyball is displayed as \"Beachvolleyball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=biathlon with a fixed text, namely 'Biathlon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "biathlon" + "value": "biathlon", + "description": "sport=biathlon is displayed as \"Biathlon\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=billiards with a fixed text, namely 'Cue sports' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "billiards" + "value": "billiards", + "description": "sport=billiards is displayed as \"Cue sports\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=bmx with a fixed text, namely 'BMX' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "bmx" + "value": "bmx", + "description": "sport=bmx is displayed as \"BMX\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=bobsleigh with a fixed text, namely 'Bobsleigh' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "bobsleigh" + "value": "bobsleigh", + "description": "sport=bobsleigh is displayed as \"Bobsleigh\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=boules with a fixed text, namely 'Boules' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "boules" + "value": "boules", + "description": "sport=boules is displayed as \"Boules\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=bowls with a fixed text, namely 'Bowls' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "bowls" + "value": "bowls", + "description": "sport=bowls is displayed as \"Bowls\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=boxing with a fixed text, namely 'Boxing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "boxing" + "value": "boxing", + "description": "sport=boxing is displayed as \"Boxing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=bullfighting with a fixed text, namely 'Bullfighting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "bullfighting" + "value": "bullfighting", + "description": "sport=bullfighting is displayed as \"Bullfighting\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=canadian_football with a fixed text, namely 'Canadian football' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "canadian_football" + "value": "canadian_football", + "description": "sport=canadian_football is displayed as \"Canadian football\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=canoe with a fixed text, namely 'Canoe' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "canoe" + "value": "canoe", + "description": "sport=canoe is displayed as \"Canoe\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=chess with a fixed text, namely 'Chess' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "chess" + "value": "chess", + "description": "sport=chess is displayed as \"Chess\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=cliff_diving with a fixed text, namely 'Non-competitive diving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "cliff_diving" + "value": "cliff_diving", + "description": "sport=cliff_diving is displayed as \"Non-competitive diving\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=climbing with a fixed text, namely 'Climbing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "climbing" + "value": "climbing", + "description": "sport=climbing is displayed as \"Climbing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=climbing_adventure with a fixed text, namely 'Climbing Adventure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "climbing_adventure" + "value": "climbing_adventure", + "description": "sport=climbing_adventure is displayed as \"Climbing Adventure\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=cockfighting with a fixed text, namely 'Cockfighting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "cockfighting" + "value": "cockfighting", + "description": "sport=cockfighting is displayed as \"Cockfighting\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=cricket with a fixed text, namely 'Cricket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "cricket" + "value": "cricket", + "description": "sport=cricket is displayed as \"Cricket\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=crossfit with a fixed text, namely 'CrossFit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "crossfit" + "value": "crossfit", + "description": "sport=crossfit is displayed as \"CrossFit\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=croquet with a fixed text, namely 'Croquet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "croquet" + "value": "croquet", + "description": "sport=croquet is displayed as \"Croquet\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=curling with a fixed text, namely 'Curling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "curling" + "value": "curling", + "description": "sport=curling is displayed as \"Curling\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=cycle_polo with a fixed text, namely 'Cycle Polo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "cycle_polo" + "value": "cycle_polo", + "description": "sport=cycle_polo is displayed as \"Cycle Polo\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=cycling with a fixed text, namely 'Cycling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "cycling" + "value": "cycling", + "description": "sport=cycling is displayed as \"Cycling\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=dance with a fixed text, namely 'Dance' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "dance" + "value": "dance", + "description": "sport=dance is displayed as \"Dance\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=darts with a fixed text, namely 'Darts' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "darts" + "value": "darts", + "description": "sport=darts is displayed as \"Darts\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=dog_agility with a fixed text, namely 'Dog agility' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "dog_agility" + "value": "dog_agility", + "description": "sport=dog_agility is displayed as \"Dog agility\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=dog_racing with a fixed text, namely 'Greyhound racing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "dog_racing" + "value": "dog_racing", + "description": "sport=dog_racing is displayed as \"Greyhound racing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=dragon_boat with a fixed text, namely 'Dragon Boat' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "dragon_boat" + "value": "dragon_boat", + "description": "sport=dragon_boat is displayed as \"Dragon Boat\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=equestrian with a fixed text, namely 'Equestrianism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "equestrian" + "value": "equestrian", + "description": "sport=equestrian is displayed as \"Equestrianism\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=fencing with a fixed text, namely 'Fencing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "fencing" + "value": "fencing", + "description": "sport=fencing is displayed as \"Fencing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=field_hockey with a fixed text, namely 'Field hockey' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "field_hockey" + "value": "field_hockey", + "description": "sport=field_hockey is displayed as \"Field hockey\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=fitness with a fixed text, namely 'Fitness' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "fitness" + "value": "fitness", + "description": "sport=fitness is displayed as \"Fitness\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=five-a-side with a fixed text, namely '5 person soccer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "five-a-side" + "value": "five-a-side", + "description": "sport=five-a-side is displayed as \"5 person soccer\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=floorball with a fixed text, namely 'Floorball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "floorball" + "value": "floorball", + "description": "sport=floorball is displayed as \"Floorball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=four_square with a fixed text, namely 'Four square' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "four_square" + "value": "four_square", + "description": "sport=four_square is displayed as \"Four square\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=free_flying with a fixed text, namely 'Paragliding' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "free_flying" + "value": "free_flying", + "description": "sport=free_flying is displayed as \"Paragliding\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=futsal with a fixed text, namely 'Futsal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "futsal" + "value": "futsal", + "description": "sport=futsal is displayed as \"Futsal\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=gaelic_games with a fixed text, namely 'Gaelic games' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "gaelic_games" + "value": "gaelic_games", + "description": "sport=gaelic_games is displayed as \"Gaelic games\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=gaga with a fixed text, namely 'Gaga ball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "gaga" + "value": "gaga", + "description": "sport=gaga is displayed as \"Gaga ball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=golf with a fixed text, namely 'Golf' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "golf" + "value": "golf", + "description": "sport=golf is displayed as \"Golf\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=gymnastics with a fixed text, namely 'Gymnastics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "gymnastics" + "value": "gymnastics", + "description": "sport=gymnastics is displayed as \"Gymnastics\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=handball with a fixed text, namely 'Handball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "handball" + "value": "handball", + "description": "sport=handball is displayed as \"Handball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=hapkido with a fixed text, namely 'Hapkido' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "hapkido" + "value": "hapkido", + "description": "sport=hapkido is displayed as \"Hapkido\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=hiking with a fixed text, namely 'Hiking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "hiking" + "value": "hiking", + "description": "sport=hiking is displayed as \"Hiking\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=horseshoes with a fixed text, namely 'Horseshoes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "horseshoes" + "value": "horseshoes", + "description": "sport=horseshoes is displayed as \"Horseshoes\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=horse_racing with a fixed text, namely 'Horse racing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "horse_racing" + "value": "horse_racing", + "description": "sport=horse_racing is displayed as \"Horse racing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=ice_hockey with a fixed text, namely 'Ice Hockey' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "ice_hockey" + "value": "ice_hockey", + "description": "sport=ice_hockey is displayed as \"Ice Hockey\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=ice_skating with a fixed text, namely 'Ice skating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "ice_skating" + "value": "ice_skating", + "description": "sport=ice_skating is displayed as \"Ice skating\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=ice_stock with a fixed text, namely 'Ice stock sport' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "ice_stock" + "value": "ice_stock", + "description": "sport=ice_stock is displayed as \"Ice stock sport\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=judo with a fixed text, namely 'Judo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "judo" + "value": "judo", + "description": "sport=judo is displayed as \"Judo\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=karate with a fixed text, namely 'Karate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "karate" + "value": "karate", + "description": "sport=karate is displayed as \"Karate\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=karting with a fixed text, namely 'Kart racing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "karting" + "value": "karting", + "description": "sport=karting is displayed as \"Kart racing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=kickboxing with a fixed text, namely 'Kickboxing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "kickboxing" + "value": "kickboxing", + "description": "sport=kickboxing is displayed as \"Kickboxing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=kitesurfing with a fixed text, namely 'Kitesurfing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "kitesurfing" + "value": "kitesurfing", + "description": "sport=kitesurfing is displayed as \"Kitesurfing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=korfball with a fixed text, namely 'Korfball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "korfball" + "value": "korfball", + "description": "sport=korfball is displayed as \"Korfball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=krachtball with a fixed text, namely 'Krachtball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "krachtball" + "value": "krachtball", + "description": "sport=krachtball is displayed as \"Krachtball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=lacrosse with a fixed text, namely 'Lacrosse' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "lacrosse" + "value": "lacrosse", + "description": "sport=lacrosse is displayed as \"Lacrosse\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=laser_tag with a fixed text, namely 'Laser tag' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "laser_tag" + "value": "laser_tag", + "description": "sport=laser_tag is displayed as \"Laser tag\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=martial_arts with a fixed text, namely 'Martial arts' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "martial_arts" + "value": "martial_arts", + "description": "sport=martial_arts is displayed as \"Martial arts\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=miniature_golf with a fixed text, namely 'Miniature golf' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "miniature_golf" + "value": "miniature_golf", + "description": "sport=miniature_golf is displayed as \"Miniature golf\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=model_aerodrome with a fixed text, namely 'Radio-controlled aircraft' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "model_aerodrome" + "value": "model_aerodrome", + "description": "sport=model_aerodrome is displayed as \"Radio-controlled aircraft\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=motocross with a fixed text, namely 'Motocross' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "motocross" + "value": "motocross", + "description": "sport=motocross is displayed as \"Motocross\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=motor with a fixed text, namely 'Motorsport' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "motor" + "value": "motor", + "description": "sport=motor is displayed as \"Motorsport\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=multi with a fixed text, namely 'Multiple kind of sports' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "multi" + "value": "multi", + "description": "sport=multi is displayed as \"Multiple kind of sports\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=netball with a fixed text, namely 'Netball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "netball" + "value": "netball", + "description": "sport=netball is displayed as \"Netball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=obstacle_course with a fixed text, namely 'Obstacle course' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "obstacle_course" + "value": "obstacle_course", + "description": "sport=obstacle_course is displayed as \"Obstacle course\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=orienteering with a fixed text, namely 'Orienteering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "orienteering" + "value": "orienteering", + "description": "sport=orienteering is displayed as \"Orienteering\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=paddle_tennis with a fixed text, namely 'Paddle tennis' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "paddle_tennis" + "value": "paddle_tennis", + "description": "sport=paddle_tennis is displayed as \"Paddle tennis\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=padel with a fixed text, namely 'Padel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "padel" + "value": "padel", + "description": "sport=padel is displayed as \"Padel\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=paintball with a fixed text, namely 'Paintball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "paintball" + "value": "paintball", + "description": "sport=paintball is displayed as \"Paintball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=parachuting with a fixed text, namely 'Parachuting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "parachuting" + "value": "parachuting", + "description": "sport=parachuting is displayed as \"Parachuting\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=parkour with a fixed text, namely 'Parkour' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "parkour" + "value": "parkour", + "description": "sport=parkour is displayed as \"Parkour\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=pelota with a fixed text, namely 'Palota' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "pelota" + "value": "pelota", + "description": "sport=pelota is displayed as \"Palota\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=pesäpallo with a fixed text, namely 'Pesäpallo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "pesäpallo" + "value": "pesäpallo", + "description": "sport=pesäpallo is displayed as \"Pesäpallo\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=pickleball with a fixed text, namely 'Pickleball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "pickleball" + "value": "pickleball", + "description": "sport=pickleball is displayed as \"Pickleball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=pilates with a fixed text, namely 'Pilates' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "pilates" + "value": "pilates", + "description": "sport=pilates is displayed as \"Pilates\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=pole_dance with a fixed text, namely 'Pole dance' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "pole_dance" + "value": "pole_dance", + "description": "sport=pole_dance is displayed as \"Pole dance\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=racquet with a fixed text, namely 'Racquetball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "racquet" + "value": "racquet", + "description": "sport=racquet is displayed as \"Racquetball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=rc_car with a fixed text, namely 'Radio-controlled car' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "rc_car" + "value": "rc_car", + "description": "sport=rc_car is displayed as \"Radio-controlled car\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=roller_skating with a fixed text, namely 'Roller skating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "roller_skating" + "value": "roller_skating", + "description": "sport=roller_skating is displayed as \"Roller skating\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=rowing with a fixed text, namely 'Rowing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "rowing" + "value": "rowing", + "description": "sport=rowing is displayed as \"Rowing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=rugby_league with a fixed text, namely 'Rugby league' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "rugby_league" + "value": "rugby_league", + "description": "sport=rugby_league is displayed as \"Rugby league\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=rugby_union with a fixed text, namely 'Rugby union' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "rugby_union" + "value": "rugby_union", + "description": "sport=rugby_union is displayed as \"Rugby union\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=running with a fixed text, namely 'Running' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "running" + "value": "running", + "description": "sport=running is displayed as \"Running\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=sailing with a fixed text, namely 'Sailing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "sailing" + "value": "sailing", + "description": "sport=sailing is displayed as \"Sailing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=scuba_diving with a fixed text, namely 'Scuba diving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "sport=scuba_diving is displayed as \"Scuba diving\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=shooting with a fixed text, namely 'Shooting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "shooting" + "value": "shooting", + "description": "sport=shooting is displayed as \"Shooting\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=shot-put with a fixed text, namely 'Shot-put' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "shot-put" + "value": "shot-put", + "description": "sport=shot-put is displayed as \"Shot-put\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=skateboard with a fixed text, namely 'Skateboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "skateboard" + "value": "skateboard", + "description": "sport=skateboard is displayed as \"Skateboard\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=ski_jumping with a fixed text, namely 'Ski jumping' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "ski_jumping" + "value": "ski_jumping", + "description": "sport=ski_jumping is displayed as \"Ski jumping\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=snooker with a fixed text, namely 'Snooker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "snooker" + "value": "snooker", + "description": "sport=snooker is displayed as \"Snooker\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=soccer with a fixed text, namely 'Soccer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "soccer" + "value": "soccer", + "description": "sport=soccer is displayed as \"Soccer\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=softball with a fixed text, namely 'Softball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "softball" + "value": "softball", + "description": "sport=softball is displayed as \"Softball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=speedway with a fixed text, namely 'Motorcycle speedway' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "speedway" + "value": "speedway", + "description": "sport=speedway is displayed as \"Motorcycle speedway\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=squash with a fixed text, namely 'Squash' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "squash" + "value": "squash", + "description": "sport=squash is displayed as \"Squash\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=sumo with a fixed text, namely 'Sumo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "sumo" + "value": "sumo", + "description": "sport=sumo is displayed as \"Sumo\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=surfing with a fixed text, namely 'Surfing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "surfing" + "value": "surfing", + "description": "sport=surfing is displayed as \"Surfing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=swimming with a fixed text, namely 'Swimming' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "swimming" + "value": "swimming", + "description": "sport=swimming is displayed as \"Swimming\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=table_tennis with a fixed text, namely 'Table tennis' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "table_tennis" + "value": "table_tennis", + "description": "sport=table_tennis is displayed as \"Table tennis\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=table_soccer with a fixed text, namely 'Table soccer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "table_soccer" + "value": "table_soccer", + "description": "sport=table_soccer is displayed as \"Table soccer\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=taekwondo with a fixed text, namely 'Taekwondo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "taekwondo" + "value": "taekwondo", + "description": "sport=taekwondo is displayed as \"Taekwondo\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=tennis with a fixed text, namely 'Tennis' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "tennis" + "value": "tennis", + "description": "sport=tennis is displayed as \"Tennis\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=teqball with a fixed text, namely 'Teqball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "teqball" + "value": "teqball", + "description": "sport=teqball is displayed as \"Teqball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=toboggan with a fixed text, namely 'Toboggan' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "toboggan" + "value": "toboggan", + "description": "sport=toboggan is displayed as \"Toboggan\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=trampoline with a fixed text, namely 'Trampoline' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "trampoline" + "value": "trampoline", + "description": "sport=trampoline is displayed as \"Trampoline\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=ultimate with a fixed text, namely 'Ultimate frisbee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "ultimate" + "value": "ultimate", + "description": "sport=ultimate is displayed as \"Ultimate frisbee\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=ultralight_aviation with a fixed text, namely 'Ultralight aviation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "ultralight_aviation" + "value": "ultralight_aviation", + "description": "sport=ultralight_aviation is displayed as \"Ultralight aviation\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=volleyball with a fixed text, namely 'Volleyball' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "volleyball" + "value": "volleyball", + "description": "sport=volleyball is displayed as \"Volleyball\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=wakeboarding with a fixed text, namely 'Wakeboarding' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "wakeboarding" + "value": "wakeboarding", + "description": "sport=wakeboarding is displayed as \"Wakeboarding\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=water_polo with a fixed text, namely 'Water polo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "water_polo" + "value": "water_polo", + "description": "sport=water_polo is displayed as \"Water polo\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=water_ski with a fixed text, namely 'Waterskiing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "water_ski" + "value": "water_ski", + "description": "sport=water_ski is displayed as \"Waterskiing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=weightlifting with a fixed text, namely 'Olympic weightlifting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "weightlifting" + "value": "weightlifting", + "description": "sport=weightlifting is displayed as \"Olympic weightlifting\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=windsurfing with a fixed text, namely 'Windsurfing' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "windsurfing" + "value": "windsurfing", + "description": "sport=windsurfing is displayed as \"Windsurfing\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=wrestling with a fixed text, namely 'Wrestling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "wrestling" + "value": "wrestling", + "description": "sport=wrestling is displayed as \"Wrestling\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=yoga with a fixed text, namely 'Yoga' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yoga" + "value": "yoga", + "description": "sport=yoga is displayed as \"Yoga\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "sport", - "description": "Layer 'Sports centres' shows sport=zurkhaneh_sport with a fixed text, namely 'Zurkhaneh sport' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "zurkhaneh_sport" + "value": "zurkhaneh_sport", + "description": "sport=zurkhaneh_sport is displayed as \"Zurkhaneh sport\" by layer Sports centres", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sports_centre.md#sport_centre_sport", + "icon_url": "./assets/layers/sports_centre/sports_centre.svg" }, { "key": "shop", - "description": "The MapComplete theme Sports has a layer Shop showing features with this tag", - "value": "sports" - }, - { - "key": "id", - "description": "Layer 'Shop' 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 'Sports') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shop allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "sports", + "description": "Features with this tag are displayed by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "name", - "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `name` are shown with \"This shop is called {name}\" and can be updated. The question is \"What is the name of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shops_name", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)" + "description": "Values of `shop` are shown with \"This is a {shop}\" and can be updated. The question is \"What kind of shop is this?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle_rental with a fixed text, namely 'Bicycle rental shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "bicycle_rental" + "value": "bicycle_rental", + "description": "shop=bicycle_rental is displayed as \"Bicycle rental shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/bicycle_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=agrarian with a fixed text, namely 'Farm Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "agrarian" + "value": "agrarian", + "description": "shop=agrarian is displayed as \"Farm Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tractor.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=alcohol with a fixed text, namely 'Liquor Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "alcohol" + "value": "alcohol", + "description": "shop=alcohol is displayed as \"Liquor Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-wine-bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=anime with a fixed text, namely 'Anime / Manga Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "anime" + "value": "anime", + "description": "shop=anime is displayed as \"Anime / Manga Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dragon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=antiques with a fixed text, namely 'Antique Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "antiques" + "value": "antiques", + "description": "shop=antiques is displayed as \"Antique Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-furniture.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=appliance with a fixed text, namely 'Appliance Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "appliance" + "value": "appliance", + "description": "shop=appliance is displayed as \"Appliance Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=art with a fixed text, namely 'Art Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "art" + "value": "art", + "description": "shop=art is displayed as \"Art Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=baby_goods with a fixed text, namely 'Baby Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "baby_goods" + "value": "baby_goods", + "description": "shop=baby_goods is displayed as \"Baby Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-baby-carriage.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bag with a fixed text, namely 'Bag/Luggage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "bag" + "value": "bag", + "description": "shop=bag is displayed as \"Bag/Luggage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase-rolling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "bakery" + "value": "bakery", + "description": "shop=bakery is displayed as \"Bakery\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bathroom_furnishing with a fixed text, namely 'Bathroom Furnishing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "bathroom_furnishing" + "value": "bathroom_furnishing", + "description": "shop=bathroom_furnishing is displayed as \"Bathroom Furnishing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bath.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beauty with a fixed text, namely 'Beauty Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "beauty" + "value": "beauty", + "description": "shop=beauty is displayed as \"Beauty Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bed with a fixed text, namely 'Bedding/Mattress Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "bed" + "value": "bed", + "description": "shop=bed is displayed as \"Bedding/Mattress Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-lodging.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=beverages with a fixed text, namely 'Beverage Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "beverages" + "value": "beverages", + "description": "shop=beverages is displayed as \"Beverage Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bicycle with a fixed text, namely 'Bicycle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "bicycle" + "value": "bicycle", + "description": "shop=bicycle is displayed as \"Bicycle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bicycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=boat with a fixed text, namely 'Boat Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "boat" + "value": "boat", + "description": "shop=boat is displayed as \"Boat Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-boat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=bookmaker with a fixed text, namely 'Bookmaker' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "bookmaker" + "value": "bookmaker", + "description": "shop=bookmaker is displayed as \"Bookmaker\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=books with a fixed text, namely 'Bookstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "books" + "value": "books", + "description": "shop=books is displayed as \"Bookstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-book.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=brewing_supplies with a fixed text, namely 'Brewing Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "brewing_supplies" + "value": "brewing_supplies", + "description": "shop=brewing_supplies is displayed as \"Brewing Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_fermenter.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=butcher with a fixed text, namely 'Butcher' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "butcher" + "value": "butcher", + "description": "shop=butcher is displayed as \"Butcher\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cleaver.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=camera with a fixed text, namely 'Camera Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "camera" + "value": "camera", + "description": "shop=camera is displayed as \"Camera Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=candles with a fixed text, namely 'Candle Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "candles" + "value": "candles", + "description": "shop=candles is displayed as \"Candle Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cannabis with a fixed text, namely 'Cannabis Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "cannabis" + "value": "cannabis", + "description": "shop=cannabis is displayed as \"Cannabis Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cannabis.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "car" + "value": "car", + "description": "shop=car is displayed as \"Car Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_parts with a fixed text, namely 'Car Parts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "car_parts" + "value": "car_parts", + "description": "shop=car_parts is displayed as \"Car Parts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-car-battery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "car_repair" + "value": "car_repair", + "description": "shop=car_repair is displayed as \"Car Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-car-repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=caravan with a fixed text, namely 'RV Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "caravan" + "value": "caravan", + "description": "shop=caravan is displayed as \"RV Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-camper_trailer.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=carpet with a fixed text, namely 'Carpet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "carpet" + "value": "carpet", + "description": "shop=carpet is displayed as \"Carpet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=catalogue with a fixed text, namely 'Catalog Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "catalogue" + "value": "catalogue", + "description": "shop=catalogue is displayed as \"Catalog Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=charity with a fixed text, namely 'Charity Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "charity" + "value": "charity", + "description": "shop=charity is displayed as \"Charity Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cheese with a fixed text, namely 'Cheese Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "cheese" + "value": "cheese", + "description": "shop=cheese is displayed as \"Cheese Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chemist with a fixed text, namely 'Drugstore' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "chemist" + "value": "chemist", + "description": "shop=chemist is displayed as \"Drugstore\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=chocolate with a fixed text, namely 'Chocolate Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "chocolate" + "value": "chocolate", + "description": "shop=chocolate is displayed as \"Chocolate Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "clothes" + "value": "clothes", + "description": "shop=clothes is displayed as \"Clothing Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-clothing-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=coffee with a fixed text, namely 'Coffee Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "coffee" + "value": "coffee", + "description": "shop=coffee is displayed as \"Coffee Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-coffee.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=collector with a fixed text, namely 'Collectibles Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "collector" + "value": "collector", + "description": "shop=collector is displayed as \"Collectibles Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=computer with a fixed text, namely 'Computer Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "computer" + "value": "computer", + "description": "shop=computer is displayed as \"Computer Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-laptop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=confectionery with a fixed text, namely 'Candy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "confectionery" + "value": "confectionery", + "description": "shop=confectionery is displayed as \"Candy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "convenience" + "value": "convenience", + "description": "shop=convenience is displayed as \"Convenience Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=copyshop with a fixed text, namely 'Copy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "copyshop" + "value": "copyshop", + "description": "shop=copyshop is displayed as \"Copy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=cosmetics with a fixed text, namely 'Cosmetics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "cosmetics" + "value": "cosmetics", + "description": "shop=cosmetics is displayed as \"Cosmetics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-lipstick.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=country_store with a fixed text, namely 'Rural Supplies Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "country_store" + "value": "country_store", + "description": "shop=country_store is displayed as \"Rural Supplies Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-hat-cowboy-side.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=craft with a fixed text, namely 'Arts & Crafts Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "craft" + "value": "craft", + "description": "shop=craft is displayed as \"Arts & Crafts Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=curtain with a fixed text, namely 'Curtain Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "curtain" + "value": "curtain", + "description": "shop=curtain is displayed as \"Curtain Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-curtains.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dairy with a fixed text, namely 'Dairy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "dairy" + "value": "dairy", + "description": "shop=dairy is displayed as \"Dairy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=deli with a fixed text, namely 'Delicatessen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "deli" + "value": "deli", + "description": "shop=deli is displayed as \"Delicatessen\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-jar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=department_store with a fixed text, namely 'Department Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "department_store" + "value": "department_store", + "description": "shop=department_store is displayed as \"Department Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doityourself with a fixed text, namely 'DIY Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "doityourself" + "value": "doityourself", + "description": "shop=doityourself is displayed as \"DIY Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=doors with a fixed text, namely 'Door Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "doors" + "value": "doors", + "description": "shop=doors is displayed as \"Door Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-door-open.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=dry_cleaning with a fixed text, namely 'Dry Cleaner' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "dry_cleaning" + "value": "dry_cleaning", + "description": "shop=dry_cleaning is displayed as \"Dry Cleaner\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-clothes_hanger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=e-cigarette with a fixed text, namely 'E-Cigarette Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "e-cigarette" + "value": "e-cigarette", + "description": "shop=e-cigarette is displayed as \"E-Cigarette Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electrical with a fixed text, namely 'Electrical Equipment Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "electrical" + "value": "electrical", + "description": "shop=electrical is displayed as \"Electrical Equipment Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-power.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=electronics with a fixed text, namely 'Electronics Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "electronics" + "value": "electronics", + "description": "shop=electronics is displayed as \"Electronics Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plug.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=erotic with a fixed text, namely 'Erotic Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "erotic" + "value": "erotic", + "description": "shop=erotic is displayed as \"Erotic Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fabric with a fixed text, namely 'Fabric Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "fabric" + "value": "fabric", + "description": "shop=fabric is displayed as \"Fabric Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-tape.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=farm with a fixed text, namely 'Produce Stand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "farm" + "value": "farm", + "description": "shop=farm is displayed as \"Produce Stand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fashion_accessories with a fixed text, namely 'Fashion Accessories Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "fashion_accessories" + "value": "fashion_accessories", + "description": "shop=fashion_accessories is displayed as \"Fashion Accessories Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fashion_accessories.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fireplace with a fixed text, namely 'Fireplace Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "fireplace" + "value": "fireplace", + "description": "shop=fireplace is displayed as \"Fireplace Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fireplace.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fishing with a fixed text, namely 'Fishing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "fishing" + "value": "fishing", + "description": "shop=fishing is displayed as \"Fishing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-ice_fishing.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=flooring with a fixed text, namely 'Flooring Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "flooring" + "value": "flooring", + "description": "shop=flooring is displayed as \"Flooring Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=florist with a fixed text, namely 'Florist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "florist" + "value": "florist", + "description": "shop=florist is displayed as \"Florist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frame with a fixed text, namely 'Framing Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "frame" + "value": "frame", + "description": "shop=frame is displayed as \"Framing Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-vector-square.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=frozen_food with a fixed text, namely 'Frozen Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "frozen_food" + "value": "frozen_food", + "description": "shop=frozen_food is displayed as \"Frozen Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=fuel with a fixed text, namely 'Fuel Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "fuel" + "value": "fuel", + "description": "shop=fuel is displayed as \"Fuel Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=funeral_directors with a fixed text, namely 'Funeral Home' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "funeral_directors" + "value": "funeral_directors", + "description": "shop=funeral_directors is displayed as \"Funeral Home\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-cemetery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=furniture with a fixed text, namely 'Furniture Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "furniture" + "value": "furniture", + "description": "shop=furniture is displayed as \"Furniture Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-couch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=games with a fixed text, namely 'Tabletop Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "games" + "value": "games", + "description": "shop=games is displayed as \"Tabletop Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=garden_centre with a fixed text, namely 'Garden Center' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "garden_centre" + "value": "garden_centre", + "description": "shop=garden_centre is displayed as \"Garden Center\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-garden-centre.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gas with a fixed text, namely 'Bottled Gas Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "gas" + "value": "gas", + "description": "shop=gas is displayed as \"Bottled Gas Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-propane_tank.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=general with a fixed text, namely 'General Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "general" + "value": "general", + "description": "shop=general is displayed as \"General Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=gift with a fixed text, namely 'Gift Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "gift" + "value": "gift", + "description": "shop=gift is displayed as \"Gift Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gift.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=greengrocer with a fixed text, namely 'Greengrocer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "greengrocer" + "value": "greengrocer", + "description": "shop=greengrocer is displayed as \"Greengrocer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-carrot.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "hairdresser" + "value": "hairdresser", + "description": "shop=hairdresser is displayed as \"Hairdresser\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-beauty_salon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hairdresser_supply with a fixed text, namely 'Hairdresser Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "hairdresser_supply" + "value": "hairdresser_supply", + "description": "shop=hairdresser_supply is displayed as \"Hairdresser Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hair_care.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hardware with a fixed text, namely 'Hardware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "hardware" + "value": "hardware", + "description": "shop=hardware is displayed as \"Hardware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=health_food with a fixed text, namely 'Health Food Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "health_food" + "value": "health_food", + "description": "shop=health_food is displayed as \"Health Food Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hearing_aids with a fixed text, namely 'Hearing Aids Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "hearing_aids" + "value": "hearing_aids", + "description": "shop=hearing_aids is displayed as \"Hearing Aids Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hearing_aid.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=herbalist with a fixed text, namely 'Herbalist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "herbalist" + "value": "herbalist", + "description": "shop=herbalist is displayed as \"Herbalist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-leaf.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hifi with a fixed text, namely 'Hifi Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "hifi" + "value": "hifi", + "description": "shop=hifi is displayed as \"Hifi Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-speaker.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=honey with a fixed text, namely 'Honey Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "honey" + "value": "honey", + "description": "shop=honey is displayed as \"Honey Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=household_linen with a fixed text, namely 'Household Linen Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "household_linen" + "value": "household_linen", + "description": "shop=household_linen is displayed as \"Household Linen Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-cloth.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=houseware with a fixed text, namely 'Houseware Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "houseware" + "value": "houseware", + "description": "shop=houseware is displayed as \"Houseware Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-blender.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=hunting with a fixed text, namely 'Hunting Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "hunting" + "value": "hunting", + "description": "shop=hunting is displayed as \"Hunting Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-bow_and_arrow.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=interior_decoration with a fixed text, namely 'Interior Decoration Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "interior_decoration" + "value": "interior_decoration", + "description": "shop=interior_decoration is displayed as \"Interior Decoration Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=jewelry with a fixed text, namely 'Jewelry Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "jewelry" + "value": "jewelry", + "description": "shop=jewelry is displayed as \"Jewelry Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-jewelry-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kiosk with a fixed text, namely 'Kiosk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "kiosk" + "value": "kiosk", + "description": "shop=kiosk is displayed as \"Kiosk\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-store.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=kitchen with a fixed text, namely 'Kitchen Design Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "kitchen" + "value": "kitchen", + "description": "shop=kitchen is displayed as \"Kitchen Design Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-kitchen_sink.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=laundry with a fixed text, namely 'Laundry' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "laundry" + "value": "laundry", + "description": "shop=laundry is displayed as \"Laundry\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-laundry.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=leather with a fixed text, namely 'Leather Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "leather" + "value": "leather", + "description": "shop=leather is displayed as \"Leather Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-handbag.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lighting with a fixed text, namely 'Lighting Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "lighting" + "value": "lighting", + "description": "shop=lighting is displayed as \"Lighting Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-desk_lamp.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=locksmith with a fixed text, namely 'Locksmith' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "locksmith" + "value": "locksmith", + "description": "shop=locksmith is displayed as \"Locksmith\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=lottery with a fixed text, namely 'Lottery Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "lottery" + "value": "lottery", + "description": "shop=lottery is displayed as \"Lottery Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mall with a fixed text, namely 'Mall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "mall" + "value": "mall", + "description": "shop=mall is displayed as \"Mall\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=massage with a fixed text, namely 'Massage Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "massage" + "value": "massage", + "description": "shop=massage is displayed as \"Massage Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spa.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=medical_supply with a fixed text, namely 'Medical Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "medical_supply" + "value": "medical_supply", + "description": "shop=medical_supply is displayed as \"Medical Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-crutch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=military_surplus with a fixed text, namely 'Military Surplus Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "military_surplus" + "value": "military_surplus", + "description": "shop=military_surplus is displayed as \"Military Surplus Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-military.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=mobile_phone with a fixed text, namely 'Mobile Phone Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "mobile_phone" + "value": "mobile_phone", + "description": "shop=mobile_phone is displayed as \"Mobile Phone Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=model with a fixed text, namely 'Model Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "model" + "value": "model", + "description": "shop=model is displayed as \"Model Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=money_lender with a fixed text, namely 'Money Lender' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "money_lender" + "value": "money_lender", + "description": "shop=money_lender is displayed as \"Money Lender\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle with a fixed text, namely 'Motorcycle Dealership' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "motorcycle" + "value": "motorcycle", + "description": "shop=motorcycle is displayed as \"Motorcycle Dealership\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-motorcycle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=motorcycle_repair with a fixed text, namely 'Motorcycle Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "motorcycle_repair" + "value": "motorcycle_repair", + "description": "shop=motorcycle_repair is displayed as \"Motorcycle Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-motorcycle_repair.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=music with a fixed text, namely 'Music Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "music" + "value": "music", + "description": "shop=music is displayed as \"Music Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-compact-disc.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=musical_instrument with a fixed text, namely 'Musical Instrument Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "musical_instrument" + "value": "musical_instrument", + "description": "shop=musical_instrument is displayed as \"Musical Instrument Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-guitar.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=newsagent with a fixed text, namely 'Newsstand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "newsagent" + "value": "newsagent", + "description": "shop=newsagent is displayed as \"Newsstand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nutrition_supplements with a fixed text, namely 'Nutrition Supplements Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "nutrition_supplements" + "value": "nutrition_supplements", + "description": "shop=nutrition_supplements is displayed as \"Nutrition Supplements Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-pills.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=nuts with a fixed text, namely 'Nuts Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "nuts" + "value": "nuts", + "description": "shop=nuts is displayed as \"Nuts Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=optician with a fixed text, namely 'Optician' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "optician" + "value": "optician", + "description": "shop=optician is displayed as \"Optician\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-optician.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outdoor with a fixed text, namely 'Outdoors Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "outdoor" + "value": "outdoor", + "description": "shop=outdoor is displayed as \"Outdoors Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-compass.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=outpost with a fixed text, namely 'Online Retailer Outpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "outpost" + "value": "outpost", + "description": "shop=outpost is displayed as \"Online Retailer Outpost\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=paint with a fixed text, namely 'Paint Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "paint" + "value": "paint", + "description": "shop=paint is displayed as \"Paint Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paint-roller.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=party with a fixed text, namely 'Party Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "party" + "value": "party", + "description": "shop=party is displayed as \"Party Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-balloon.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pasta with a fixed text, namely 'Pasta Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "pasta" + "value": "pasta", + "description": "shop=pasta is displayed as \"Pasta Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-plate-wheat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pastry with a fixed text, namely 'Pastry Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "pastry" + "value": "pastry", + "description": "shop=pastry is displayed as \"Pastry Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pawnbroker with a fixed text, namely 'Pawnshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "pawnbroker" + "value": "pawnbroker", + "description": "shop=pawnbroker is displayed as \"Pawnshop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-money_hand.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=perfumery with a fixed text, namely 'Perfume Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "perfumery" + "value": "perfumery", + "description": "shop=perfumery is displayed as \"Perfume Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-perfume.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet with a fixed text, namely 'Pet Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "pet" + "value": "pet", + "description": "shop=pet is displayed as \"Pet Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-cat.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pet_grooming with a fixed text, namely 'Pet Groomer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "pet_grooming" + "value": "pet_grooming", + "description": "shop=pet_grooming is displayed as \"Pet Groomer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pet_grooming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=photo with a fixed text, namely 'Photography Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "photo" + "value": "photo", + "description": "shop=photo is displayed as \"Photography Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-camera-retro.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pottery with a fixed text, namely 'Pottery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "pottery" + "value": "pottery", + "description": "shop=pottery is displayed as \"Pottery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=printer_ink with a fixed text, namely 'Printer Ink Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "printer_ink" + "value": "printer_ink", + "description": "shop=printer_ink is displayed as \"Printer Ink Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-print.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=psychic with a fixed text, namely 'Psychic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "psychic" + "value": "psychic", + "description": "shop=psychic is displayed as \"Psychic\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-psychic.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=pyrotechnics with a fixed text, namely 'Fireworks Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "pyrotechnics" + "value": "pyrotechnics", + "description": "shop=pyrotechnics is displayed as \"Fireworks Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-rocket_firework.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=radiotechnics with a fixed text, namely 'Radio/Electronic Component Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "radiotechnics" + "value": "radiotechnics", + "description": "shop=radiotechnics is displayed as \"Radio/Electronic Component Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-microchip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=religion with a fixed text, namely 'Religious Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "religion" + "value": "religion", + "description": "shop=religion is displayed as \"Religious Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rental with a fixed text, namely 'Rental Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "rental" + "value": "rental", + "description": "shop=rental is displayed as \"Rental Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-dolly.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=repair with a fixed text, namely 'Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "repair" + "value": "repair", + "description": "shop=repair is displayed as \"Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=rice with a fixed text, namely 'Rice Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "rice" + "value": "rice", + "description": "shop=rice is displayed as \"Rice Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-bowl-rice.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=scuba_diving with a fixed text, namely 'Scuba Diving Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "scuba_diving" + "value": "scuba_diving", + "description": "shop=scuba_diving is displayed as \"Scuba Diving Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-scuba_diving.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=seafood with a fixed text, namely 'Seafood Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "seafood" + "value": "seafood", + "description": "shop=seafood is displayed as \"Seafood Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-fish_cleaning.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=second_hand with a fixed text, namely 'Thrift Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "second_hand" + "value": "second_hand", + "description": "shop=second_hand is displayed as \"Thrift Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sewing with a fixed text, namely 'Sewing Supply Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "sewing" + "value": "sewing", + "description": "shop=sewing is displayed as \"Sewing Supply Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoe_repair with a fixed text, namely 'Shoe Repair Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "shoe_repair" + "value": "shoe_repair", + "description": "shop=shoe_repair is displayed as \"Shoe Repair Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-hammer_shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=shoes with a fixed text, namely 'Shoe Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "shoes" + "value": "shoes", + "description": "shop=shoes is displayed as \"Shoe Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shoe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=spices with a fixed text, namely 'Spice Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "spices" + "value": "spices", + "description": "shop=spices is displayed as \"Spice Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-spice_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=sports with a fixed text, namely 'Sporting Goods Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "sports" + "value": "sports", + "description": "shop=sports is displayed as \"Sporting Goods Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-futbol.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=stationery with a fixed text, namely 'Stationery Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "stationery" + "value": "stationery", + "description": "shop=stationery is displayed as \"Stationery Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-paperclip.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=storage_rental with a fixed text, namely 'Storage Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "storage_rental" + "value": "storage_rental", + "description": "shop=storage_rental is displayed as \"Storage Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-storage_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "supermarket" + "value": "supermarket", + "description": "shop=supermarket is displayed as \"Supermarket\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-grocery.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=swimming_pool with a fixed text, namely 'Pool Supply Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "swimming_pool" + "value": "swimming_pool", + "description": "shop=swimming_pool is displayed as \"Pool Supply Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tailor with a fixed text, namely 'Tailor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "tailor" + "value": "tailor", + "description": "shop=tailor is displayed as \"Tailor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-needle_and_spool.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tattoo with a fixed text, namely 'Tattoo Parlor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "tattoo" + "value": "tattoo", + "description": "shop=tattoo is displayed as \"Tattoo Parlor\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tattoo_machine.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tea with a fixed text, namely 'Tea Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "tea" + "value": "tea", + "description": "shop=tea is displayed as \"Tea Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-teahouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=telecommunication with a fixed text, namely 'Telecom Retail Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "telecommunication" + "value": "telecommunication", + "description": "shop=telecommunication is displayed as \"Telecom Retail Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-telephone.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=ticket with a fixed text, namely 'Ticket Seller' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "ticket" + "value": "ticket", + "description": "shop=ticket is displayed as \"Ticket Seller\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tiles with a fixed text, namely 'Tile Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "tiles" + "value": "tiles", + "description": "shop=tiles is displayed as \"Tile Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tiling.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tobacco with a fixed text, namely 'Tobacco Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "tobacco" + "value": "tobacco", + "description": "shop=tobacco is displayed as \"Tobacco Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-pipe.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tool_hire with a fixed text, namely 'Tool Rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "tool_hire" + "value": "tool_hire", + "description": "shop=tool_hire is displayed as \"Tool Rental\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=toys with a fixed text, namely 'Toy Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "toys" + "value": "toys", + "description": "shop=toys is displayed as \"Toy Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-rocket.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trade with a fixed text, namely 'Trade Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "trade" + "value": "trade", + "description": "shop=trade is displayed as \"Trade Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tools.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=travel_agency with a fixed text, namely 'Travel Agency' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "travel_agency" + "value": "travel_agency", + "description": "shop=travel_agency is displayed as \"Travel Agency\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-suitcase.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=trophy with a fixed text, namely 'Trophy Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "trophy" + "value": "trophy", + "description": "shop=trophy is displayed as \"Trophy Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/fas-trophy.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=tyres with a fixed text, namely 'Tire Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "tyres" + "value": "tyres", + "description": "shop=tyres is displayed as \"Tire Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-tire.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=vacuum_cleaner with a fixed text, namely 'Vacuum Cleaner Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "vacuum_cleaner" + "value": "vacuum_cleaner", + "description": "shop=vacuum_cleaner is displayed as \"Vacuum Cleaner Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-vacuum.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=variety_store with a fixed text, namely 'Discount Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "variety_store" + "value": "variety_store", + "description": "shop=variety_store is displayed as \"Discount Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video with a fixed text, namely 'Video Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "video" + "value": "video", + "description": "shop=video is displayed as \"Video Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-movie_rental.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=video_games with a fixed text, namely 'Video Game Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "video_games" + "value": "video_games", + "description": "shop=video_games is displayed as \"Video Game Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-gaming.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=watches with a fixed text, namely 'Watches Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "watches" + "value": "watches", + "description": "shop=watches is displayed as \"Watches Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-watch.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water with a fixed text, namely 'Drinking Water Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "water" + "value": "water", + "description": "shop=water is displayed as \"Drinking Water Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=water_sports with a fixed text, namely 'Watersport/Swim Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "water_sports" + "value": "water_sports", + "description": "shop=water_sports is displayed as \"Watersport/Swim Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=weapons with a fixed text, namely 'Weapon Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "weapons" + "value": "weapons", + "description": "shop=weapons is displayed as \"Weapon Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-dagger.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wholesale with a fixed text, namely 'Wholesale Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "wholesale" + "value": "wholesale", + "description": "shop=wholesale is displayed as \"Wholesale Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-warehouse.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wigs with a fixed text, namely 'Wig Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "wigs" + "value": "wigs", + "description": "shop=wigs is displayed as \"Wig Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=window_blind with a fixed text, namely 'Window Blind Store' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "window_blind" + "value": "window_blind", + "description": "shop=window_blind is displayed as \"Window Blind Store\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/temaki-window.svg" }, { "key": "shop", - "description": "Layer 'Shop' shows shop=wine with a fixed text, namely 'Wine Shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if craft=)", - "value": "wine" + "value": "wine", + "description": "shop=wine is displayed as \"Wine Shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/id_presets/maki-alcohol-shop.svg" }, { "key": "disused:shop", - "description": "Layer 'Shop' shows disused:shop= with a fixed text, namely 'This shop is no longer used. It is vacant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') Picking this answer will delete the key disused:shop. (This is only shown if craft=)", - "value": "" + "description": "disused:shop= is displayed as \"This shop is no longer used. It is vacant\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_types", + "icon_url": "./assets/layers/shops/shop-disused.svg" }, { "key": "brand", - "description": "Layer 'Shop' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"What is the brand of this shop?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "not:brand", - "description": "Layer 'Shop' shows not:brand=yes with a fixed text, namely 'This shop does not have a specific brand, it is not part of a bigger chain' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" + "value": "yes", + "description": "not:brand=yes is displayed as \"This shop does not have a specific brand, it is not part of a bigger chain\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#brand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=only with a fixed text, namely 'This shop sells second-hand items only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "only" + "value": "only", + "description": "second_hand=only is displayed as \"This shop sells second-hand items only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=yes with a fixed text, namely 'This shop sells second-hand items along with new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "yes" + "value": "yes", + "description": "second_hand=yes is displayed as \"This shop sells second-hand items along with new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "second_hand", - "description": "Layer 'Shop' shows second_hand=no with a fixed text, namely 'This shop only sells brand-new items' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=clothes | shop=books | shop=charity | shop=furniture | shop=mobile_phone | shop=computer | shop=toys)", - "value": "no" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "opening_hours", - "description": "Layer 'Shop' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Sports')", - "value": "closed" - }, - { - "key": "website", - "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "contact:website", - "description": "Layer 'Shop' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "email", - "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "contact:email", - "description": "Layer 'Shop' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "operator:email", - "description": "Layer 'Shop' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "phone", - "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Sports')" - }, - { - "key": "contact:phone", - "description": "Layer 'Shop' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Sports')" + "value": "no", + "description": "second_hand=no is displayed as \"This shop only sells brand-new items\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "payment:cash", - "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#payment_options", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#payment_options", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Shop' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" - }, - { - "key": "level", - "description": "Layer 'Shop' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Sports') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Shop' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Sports') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Sports') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Shop' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Sports') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Sports') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Shop' 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 'Sports') (This is only shown if repeat_on=)", - "value": "-1" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#payment_options", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "service:print:A4", - "description": "Layer 'Shop' shows service:print:A4=yes with a fixed text, namely 'This shop can print on papers of size A4' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A4=yes is displayed as \"This shop can print on papers of size A4\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A3", - "description": "Layer 'Shop' shows service:print:A3=yes with a fixed text, namely 'This shop can print on papers of size A3' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A3=yes is displayed as \"This shop can print on papers of size A3\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A2", - "description": "Layer 'Shop' shows service:print:A2=yes with a fixed text, namely 'This shop can print on papers of size A2' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A2=yes is displayed as \"This shop can print on papers of size A2\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A1", - "description": "Layer 'Shop' shows service:print:A1=yes with a fixed text, namely 'This shop can print on papers of size A1' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A1=yes is displayed as \"This shop can print on papers of size A1\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:print:A0", - "description": "Layer 'Shop' shows service:print:A0=yes with a fixed text, namely 'This shop can print on papers of size A0' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:print:A0=yes is displayed as \"This shop can print on papers of size A0\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#copyshop_print_sizes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=yes with a fixed text, namely 'This shop binds papers into a booklet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "yes" + "value": "yes", + "description": "service:binding=yes is displayed as \"This shop binds papers into a booklet\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:binding", - "description": "Layer 'Shop' shows service:binding=no with a fixed text, namely 'This shop does bind books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop~^(.*copyshop.*)$ | shop~^(.*stationery.*)$ | service:print=yes)", - "value": "no" + "value": "no", + "description": "service:binding=no is displayed as \"This shop does bind books\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#copyshop_binding", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=optometrist with a fixed text, namely 'This shop offers eye exams by certified optometrists' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "optometrist" + "value": "optometrist", + "description": "healthcare=optometrist is displayed as \"This shop offers eye exams by certified optometrists\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "healthcare", - "description": "Layer 'Shop' shows healthcare=audiologist with a fixed text, namely 'This shop offers hearing tests by a certified audiologist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=optician | shop=hearing_aid | shop=medical_supply)", - "value": "audiologist" + "value": "audiologist", + "description": "healthcare=audiologist is displayed as \"This shop offers hearing tests by a certified audiologist\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#optometrist_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft=key_cutter with a fixed text, namely 'This shop is also specialized in key cutting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "key_cutter" + "value": "key_cutter", + "description": "craft=key_cutter is displayed as \"This shop is also specialized in key cutting\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows service:key_cutting=yes with a fixed text, namely 'This shop offers key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "yes" + "value": "yes", + "description": "service:key_cutting=yes is displayed as \"This shop offers key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/fas-key.svg" }, { "key": "craft", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') Picking this answer will delete the key craft. (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "" + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:key_cutting", - "description": "Layer 'Shop' shows craft= & service:key_cutting=no with a fixed text, namely 'This shops does not offer key cutting as a service' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=shoe_repair | service:key_cutting~.+ | craft=key_cutting | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair)", - "value": "no" + "value": "no", + "description": "craft= & service:key_cutting=no is displayed as \"This shops does not offer key cutting as a service\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#key_cutter", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:retail=yes is displayed as \"This shop sells new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:retail", - "description": "Layer 'Shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell new bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:retail~.+ | shop=outdoor | shop=sport | shop=sports | shop=diy | shop=doityourself)", - "value": "no" + "value": "no", + "description": "service:bicycle:retail=no is displayed as \"This shop doesn't sell new bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#sells_new_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:second_hand=yes is displayed as \"This shop sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "no" + "value": "no", + "description": "service:bicycle:second_hand=no is displayed as \"This shop doesn't sell second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:second_hand", - "description": "Layer 'Shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:second_hand~.+ | shop=bicycle | shop=charity | shop=second_hand | shop=bicycle_repair)", - "value": "only" + "value": "only", + "description": "service:bicycle:second_hand=only is displayed as \"This shop only sells second-hand bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_second_hand", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:repair=yes is displayed as \"This shop repairs bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "no" + "value": "no", + "description": "service:bicycle:repair=no is displayed as \"This shop doesn't repair bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:repair=only_sold is displayed as \"This shop only repairs bikes bought here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:repair", - "description": "Layer 'Shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:repair~.+ | shop=sport | shop=sports | shop=outdoor | shop=bicycle | service:bicycle:retail=yes | service:bicycle:second_hand=yes | service:bicycle:second_hand=only)", - "value": "brand" + "value": "brand", + "description": "service:bicycle:repair=brand is displayed as \"This shop only repairs bikes of a certain brand\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#repairs_bikes", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:rental=yes is displayed as \"This shop rents out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:rental", - "description": "Layer 'Shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:rental~.+ | shop=bicycle | shop=sport | shop=sports | shop=bicycle_repair | shop=outdoor | shop=rental)", - "value": "no" + "value": "no", + "description": "service:bicycle:rental=no is displayed as \"This shop doesn't rent out bikes\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_rental", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "city_bike" + "value": "city_bike", + "description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "ebike" + "value": "ebike", + "description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bmx" + "value": "bmx", + "description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "mtb" + "value": "mtb", + "description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "kid_bike" + "value": "kid_bike", + "description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "tandem" + "value": "tandem", + "description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "racebike" + "value": "racebike", + "description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "bike_helmet" + "value": "bike_helmet", + "description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "rental", - "description": "Layer 'Shop' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if (service:bicycle:rental=yes | bicycle_rental~.+))", - "value": "cargo_bike" + "value": "cargo_bike", + "description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bicycle_types", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:city_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Sports') (This is only shown if rental~^(.*city_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#rental_capacity_city_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:ebike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Sports') (This is only shown if rental~^(.*ebike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#rental_capacity_ebike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:kid_bike", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Sports') (This is only shown if rental~^(.*kid_bike.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#rental_capacity_kid_bike", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bmx", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Sports') (This is only shown if rental~^(.*bmx.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#rental_capacity_bmx", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:mtb", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Sports') (This is only shown if rental~^(.*mtb.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#rental_capacity_mtb", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:bicycle_pannier", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Sports') (This is only shown if rental~^(.*bicycle_pannier.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#rental_capacity_bicycle_pannier", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "capacity:tandem_bicycle", - "description": "Layer 'Shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Sports') (This is only shown if rental~^(.*tandem_bicycle.*)$ & (service:bicycle:rental=yes | bicycle_rental~.+))" + "description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#rental_capacity_tandem_bicycle", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:pump=yes is displayed as \"This shop offers a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:pump=no is displayed as \"This shop doesn't offer a bike pump for anyone\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:pump", - "description": "Layer 'Shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:pump~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:retail=yes | ^(service:bicycle:.+)$~~^(yes)$)", - "value": "separate" + "value": "separate", + "description": "service:bicycle:pump=separate is displayed as \"There is bicycle pump, it is shown as a separate point\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_pump_service", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:diy=yes is displayed as \"This shop offers tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY bicycle repair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:diy=no is displayed as \"This shop doesn't offer tools for DIY bicycle repair\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:diy", - "description": "Layer 'Shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:diy~.+ | shop=bicycle | shop=bicycle_repair | service:bicycle:repair~^(yes|only)$)", - "value": "only_sold" + "value": "only_sold", + "description": "service:bicycle:diy=only_sold is displayed as \"Tools for DIY bicycle repair are only available if you bought/hire the bike in the shop\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_repair_tools", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning=yes is displayed as \"This shop cleans bicycles\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "diy" + "value": "diy", + "description": "service:bicycle:cleaning=diy is displayed as \"This shop has an installation where one can clean bicycles themselves\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning", - "description": "Layer 'Shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if service:bicycle:cleaning~.+ | shop=bicycle | shop=bicycle_repair | ^(service:bicycle:.*)$~~^(yes|only)$)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning=no is displayed as \"This shop doesn't offer bicycle cleaning\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_wash", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the mapcomplete.org theme 'Sports') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)" + "description": "Values of `service:bicycle:cleaning:charge` are shown with \"Using the cleaning service costs {service:bicycle:cleaning:charge}\" and can be updated. The question is \"How much does it cost to use the cleaning service?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "no" + "value": "no", + "description": "service:bicycle:cleaning:fee=no is displayed as \"The cleaning service is free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Sports') (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "yes" + "value": "yes", + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "service:bicycle:cleaning:charge", - "description": "Layer 'Shop' shows service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= with a fixed text, namely 'Free to use' (in the mapcomplete.org theme 'Sports') Picking this answer will delete the key service:bicycle:cleaning:charge. (This is only shown if amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+)", - "value": "" + "description": "service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge= is displayed as \"Free to use\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#bike_cleaning_service_bicycle_cleaning_charge", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "wlan" + "value": "wlan", + "description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet", + "icon_url": "wifi" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=no with a fixed text, namely 'This place does not offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "no" + "value": "no", + "description": "internet_access=no is displayed as \"This place does not offer internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet", + "icon_url": "wifi;cross_bottom_right:red" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Sports')", - "value": "yes" + "value": "yes", + "description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "terminal" + "value": "terminal", + "description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet", + "icon_url": "computer" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "wired" + "value": "wired", + "description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access", - "description": "Layer 'Shop' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "terminal;wifi" + "value": "terminal;wifi", + "description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "yes" + "value": "yes", + "description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "no" + "value": "no", + "description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:fee", - "description": "Layer 'Shop' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if internet_access!=no & internet_access~.+)", - "value": "customers" + "value": "customers", + "description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet_fee", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Shop' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Sports') (This is only shown if internet_access~^(.*wlan.*)$)" + "description": "Values of `internet_access:ssid` are shown with \"The network name is {internet_access:ssid}\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "internet_access:ssid", - "description": "Layer 'Shop' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if internet_access~^(.*wlan.*)$)", - "value": "Telekom" + "value": "Telekom", + "description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#internet_ssid", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=yes with a fixed text, namely 'This shop offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "yes" + "value": "yes", + "description": "organic=yes is displayed as \"This shop offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=only with a fixed text, namely 'This shop only offers organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "only" + "value": "only", + "description": "organic=only is displayed as \"This shop only offers organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "organic", - "description": "Layer 'Shop' shows organic=no with a fixed text, namely 'This shop does not offer organic products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=clothes | shop=shoes | shop=butcher | shop=cosmetics | shop=deli | shop=bakery | shop=alcohol | shop=seafood | shop=beverages | shop=florist)", - "value": "no" + "value": "no", + "description": "organic=no is displayed as \"This shop does not offer organic products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#organic", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=only with a fixed text, namely 'This shop only sells sugar free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:sugar_free=only is displayed as \"This shop only sells sugar free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a limited sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:sugar_free=limited is displayed as \"This shop has a limited sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:sugar_free", - "description": "Layer 'Shop' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#sugar_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=only with a fixed text, namely 'This shop only sells gluten free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:gluten_free=only is displayed as \"This shop only sells gluten free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#gluten_free", + "icon_url": "./assets/layers/questions/glutenfree.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a limited gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:gluten_free=limited is displayed as \"This shop has a limited gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:gluten_free", - "description": "Layer 'Shop' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#gluten_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=only with a fixed text, namely 'Only sells lactose free products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "only" + "value": "only", + "description": "diet:lactose_free=only is displayed as \"Only sells lactose free products\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "yes" + "value": "yes", + "description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#lactose_free", + "icon_url": "./assets/layers/questions/lactose_free.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=limited with a fixed text, namely 'Limited lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "limited" + "value": "limited", + "description": "diet:lactose_free=limited is displayed as \"Limited lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "diet:lactose_free", - "description": "Layer 'Shop' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports') (This is only shown if shop=supermarket | shop=convenience | shop=farm | shop=greengrocer | shop=health_food | shop=deli | shop=bakery | shop=beverages | shop=beverages | shop=pastry | shop=chocolate | shop=frozen_food | shop=ice_cream)", - "value": "no" + "value": "no", + "description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#lactose_free", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "yes" + "value": "yes", + "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "no" + "value": "no", + "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "leashed" + "value": "leashed", + "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "unleashed" + "value": "unleashed", + "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", - "description": "Layer 'Shop' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sports')", - "value": "outside" + "value": "outside", + "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { "key": "description", - "description": "Layer 'Shop' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Sports')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#description", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_street_lighting.json b/Docs/TagInfo/mapcomplete_street_lighting.json index a4d56e0c36..e97a00dc49 100644 --- a/Docs/TagInfo/mapcomplete_street_lighting.json +++ b/Docs/TagInfo/mapcomplete_street_lighting.json @@ -7,303 +7,319 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/street_lamps/street_lamp.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "highway", - "description": "The MapComplete theme Street Lighting has a layer Street Lamps showing features with this tag", - "value": "street_lamp" + "value": "street_lamp", + "description": "Features with this tag are displayed by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "id", - "description": "Layer 'Street Lamps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Street Lamps, Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "panoramax", - "description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "mapillary", - "description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "wikidata", - "description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "wikipedia", - "description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "ref", - "description": "Layer 'Street Lamps' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Street Lighting')" + "description": "Values of `ref` are shown with \"This street lamp has the reference number {ref}\" and can be updated. The question is \"What is the reference number of this street lamp?\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#ref", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "support", - "description": "Layer 'Street Lamps' shows support=catenary with a fixed text, namely 'This lamp is suspended using cables' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "catenary" + "value": "catenary", + "description": "support=catenary is displayed as \"This lamp is suspended using cables\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "support", - "description": "Layer 'Street Lamps' shows support=ceiling with a fixed text, namely 'This lamp is mounted on a ceiling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "ceiling" + "value": "ceiling", + "description": "support=ceiling is displayed as \"This lamp is mounted on a ceiling\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "support", - "description": "Layer 'Street Lamps' shows support=ground with a fixed text, namely 'This lamp is mounted in the ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "ground" + "value": "ground", + "description": "support=ground is displayed as \"This lamp is mounted in the ground\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "support", - "description": "Layer 'Street Lamps' shows support=pedestal with a fixed text, namely 'This lamp is mounted on a short pole (mostly < 1.5m)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "pedestal" + "value": "pedestal", + "description": "support=pedestal is displayed as \"This lamp is mounted on a short pole (mostly < 1.5m)\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "support", - "description": "Layer 'Street Lamps' shows support=pole with a fixed text, namely 'This lamp is mounted on a pole' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "pole" + "value": "pole", + "description": "support=pole is displayed as \"This lamp is mounted on a pole\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "support", - "description": "Layer 'Street Lamps' shows support=wall with a fixed text, namely 'This lamp is mounted directly to the wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "wall" + "value": "wall", + "description": "support=wall is displayed as \"This lamp is mounted directly to the wall\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "support", - "description": "Layer 'Street Lamps' shows support=wall_mount with a fixed text, namely 'This lamp is mounted to the wall using a metal bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "wall_mount" + "value": "wall_mount", + "description": "support=wall_mount is displayed as \"This lamp is mounted to the wall using a metal bar\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "lamp_mount", - "description": "Layer 'Street Lamps' shows lamp_mount=straight_mast with a fixed text, namely 'This lamp sits atop of a straight mast' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)", - "value": "straight_mast" + "value": "straight_mast", + "description": "lamp_mount=straight_mast is displayed as \"This lamp sits atop of a straight mast\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lamp_mount", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "lamp_mount", - "description": "Layer 'Street Lamps' shows lamp_mount=bent_mast with a fixed text, namely 'This lamp sits at the end of a bent mast' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)", - "value": "bent_mast" + "value": "bent_mast", + "description": "lamp_mount=bent_mast is displayed as \"This lamp sits at the end of a bent mast\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lamp_mount", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=electric with a fixed text, namely 'This lamp is lit electrically' (in the mapcomplete.org theme 'Street Lighting')", - "value": "electric" + "value": "electric", + "description": "light:method=electric is displayed as \"This lamp is lit electrically\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=LED with a fixed text, namely 'This lamp uses LEDs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "LED" + "value": "LED", + "description": "light:method=LED is displayed as \"This lamp uses LEDs\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=incandescent with a fixed text, namely 'This lamp uses incandescent lighting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "incandescent" + "value": "incandescent", + "description": "light:method=incandescent is displayed as \"This lamp uses incandescent lighting\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=halogen with a fixed text, namely 'This lamp uses halogen lighting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "halogen" + "value": "halogen", + "description": "light:method=halogen is displayed as \"This lamp uses halogen lighting\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=discharge with a fixed text, namely 'This lamp uses discharge lamps (unknown type)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "discharge" + "value": "discharge", + "description": "light:method=discharge is displayed as \"This lamp uses discharge lamps (unknown type)\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=mercury with a fixed text, namely 'This lamp uses a mercury-vapour lamp (lightly blueish)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "mercury" + "value": "mercury", + "description": "light:method=mercury is displayed as \"This lamp uses a mercury-vapour lamp (lightly blueish)\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=metal-halide with a fixed text, namely 'This lamp uses metal-halide lamps (bright white)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "metal-halide" + "value": "metal-halide", + "description": "light:method=metal-halide is displayed as \"This lamp uses metal-halide lamps (bright white)\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=fluorescent with a fixed text, namely 'This lamp uses fluorescent lighting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "fluorescent" + "value": "fluorescent", + "description": "light:method=fluorescent is displayed as \"This lamp uses fluorescent lighting\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=sodium with a fixed text, namely 'This lamp uses sodium lamps (unknown type)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "sodium" + "value": "sodium", + "description": "light:method=sodium is displayed as \"This lamp uses sodium lamps (unknown type)\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=low_pressure_sodium with a fixed text, namely 'This lamp uses low pressure sodium lamps (monochrome orange)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "low_pressure_sodium" + "value": "low_pressure_sodium", + "description": "light:method=low_pressure_sodium is displayed as \"This lamp uses low pressure sodium lamps (monochrome orange)\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=high_pressure_sodium with a fixed text, namely 'This lamp uses high pressure sodium lamps (orange with white)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "high_pressure_sodium" + "value": "high_pressure_sodium", + "description": "light:method=high_pressure_sodium is displayed as \"This lamp uses high pressure sodium lamps (orange with white)\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:method", - "description": "Layer 'Street Lamps' shows light:method=gas with a fixed text, namely 'This lamp is lit using gas' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "gas" + "value": "gas", + "description": "light:method=gas is displayed as \"This lamp is lit using gas\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:colour", - "description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:colour' (in the mapcomplete.org theme 'Street Lighting')" + "description": "Values of `light:colour` are shown with \"This lamp emits {light:colour} light\" and can be updated. The question is \"What colour light does this lamp emit?\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#colour", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:colour", - "description": "Layer 'Street Lamps' shows light:colour=white with a fixed text, namely 'This lamp emits white light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "white" + "value": "white", + "description": "light:colour=white is displayed as \"This lamp emits white light\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#colour", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:colour", - "description": "Layer 'Street Lamps' shows light:colour=green with a fixed text, namely 'This lamp emits green light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "green" + "value": "green", + "description": "light:colour=green is displayed as \"This lamp emits green light\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#colour", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:colour", - "description": "Layer 'Street Lamps' shows light:colour=orange with a fixed text, namely 'This lamp emits orange light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "orange" + "value": "orange", + "description": "light:colour=orange is displayed as \"This lamp emits orange light\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#colour", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:count", - "description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:count' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)" + "description": "Values of `light:count` are shown with \"This lamp has {light:count} fixtures\" and can be updated. The question is \"How many fixtures does this light have?\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#count", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:count", - "description": "Layer 'Street Lamps' shows light:count=1 with a fixed text, namely 'This lamp has 1 fixture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)", - "value": "1" + "value": "1", + "description": "light:count=1 is displayed as \"This lamp has 1 fixture\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#count", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:count", - "description": "Layer 'Street Lamps' shows light:count=2 with a fixed text, namely 'This lamp has 2 fixtures' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)", - "value": "2" + "value": "2", + "description": "light:count=2 is displayed as \"This lamp has 2 fixtures\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#count", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:lit", - "description": "Layer 'Street Lamps' shows light:lit=dusk-dawn with a fixed text, namely 'This lamp is lit at night' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "dusk-dawn" + "value": "dusk-dawn", + "description": "light:lit=dusk-dawn is displayed as \"This lamp is lit at night\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lit", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:lit", - "description": "Layer 'Street Lamps' shows light:lit=24/7 with a fixed text, namely 'This lamp is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "24/7" + "value": "24/7", + "description": "light:lit=24/7 is displayed as \"This lamp is lit 24/7\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lit", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:lit", - "description": "Layer 'Street Lamps' shows light:lit=motion with a fixed text, namely 'This lamp is lit based on motion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "motion" + "value": "motion", + "description": "light:lit=motion is displayed as \"This lamp is lit based on motion\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lit", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:lit", - "description": "Layer 'Street Lamps' shows light:lit=demand with a fixed text, namely 'This lamp is lit based on demand (e.g. with a pushbutton)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "demand" + "value": "demand", + "description": "light:lit=demand is displayed as \"This lamp is lit based on demand (e.g. with a pushbutton)\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lit", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "light:direction", - "description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:direction' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if light:count=1)" + "description": "Values of `light:direction` are shown with \"This lamp points towards {light:direction}\" and can be updated. The question is \"Where does this lamp point to?\" by layer Street Lamps", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#direction", + "icon_url": "./assets/layers/street_lamps/street_lamp.svg" }, { "key": "highway", - "description": "The MapComplete theme Street Lighting has a layer Lit streets showing features with this tag" + "description": "Features with this tag are displayed by layers Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md" }, { "key": "lit", - "description": "The MapComplete theme Street Lighting has a layer Lit streets showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Lit streets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Features with this tag are displayed by layer Lit streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md" }, { "key": "lit", - "description": "Layer 'Lit streets' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This street is lit\" by layers Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md#lit" }, { "key": "lit", - "description": "Layer 'Lit streets' shows lit=no with a fixed text, namely 'This street is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "no" + "value": "no", + "description": "lit=no is displayed as \"This street is not lit\" by layers Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md#lit" }, { "key": "lit", - "description": "Layer 'Lit streets' shows lit=sunset-sunrise with a fixed text, namely 'This street is lit at night' (in the mapcomplete.org theme 'Street Lighting')", - "value": "sunset-sunrise" + "value": "sunset-sunrise", + "description": "lit=sunset-sunrise is displayed as \"This street is lit at night\" by layers Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md#lit" }, { "key": "lit", - "description": "Layer 'Lit streets' shows lit=24/7 with a fixed text, namely 'This street is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "24/7" - }, - { - "key": "highway", - "description": "The MapComplete theme Street Lighting has a layer All streets showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'All streets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "lit", - "description": "Layer 'All streets' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "yes" - }, - { - "key": "lit", - "description": "Layer 'All streets' shows lit=no with a fixed text, namely 'This street is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "no" - }, - { - "key": "lit", - "description": "Layer 'All streets' shows lit=sunset-sunrise with a fixed text, namely 'This street is lit at night' (in the mapcomplete.org theme 'Street Lighting')", - "value": "sunset-sunrise" - }, - { - "key": "lit", - "description": "Layer 'All streets' shows lit=24/7 with a fixed text, namely 'This street is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')", - "value": "24/7" + "value": "24/7", + "description": "lit=24/7 is displayed as \"This street is lit 24/7\" by layers Lit streets, All streets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md#lit" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_surveillance.json b/Docs/TagInfo/mapcomplete_surveillance.json index b2329de0b6..362e8cb107 100644 --- a/Docs/TagInfo/mapcomplete_surveillance.json +++ b/Docs/TagInfo/mapcomplete_surveillance.json @@ -7,317 +7,381 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/surveillance/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "man_made", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag", - "value": "surveillance" + "value": "surveillance", + "description": "Features with this tag are displayed by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:type", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag", - "value": "camera" + "value": "camera", + "description": "Features with this tag are displayed by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:type", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag", - "value": "ALPR" + "value": "ALPR", + "description": "Features with this tag are displayed by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:type", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag", - "value": "ANPR" + "value": "ANPR", + "description": "Features with this tag are displayed by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "id", - "description": "Layer 'Surveillance camera's' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Surveillance camera's, Speed Camera, Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "panoramax", - "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "mapillary", - "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "wikidata", - "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "wikipedia", - "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:type", - "description": "Layer 'Surveillance camera's' shows surveillance:type=camera with a fixed text, namely 'This is a camera without number plate recognition.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "camera" + "value": "camera", + "description": "surveillance:type=camera is displayed as \"This is a camera without number plate recognition.\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#has_alpr", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:type", - "description": "Layer 'Surveillance camera's' shows surveillance:type=ALPR with a fixed text, namely 'This is an ALPR (Automatic License Plate Reader)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "ALPR" + "value": "ALPR", + "description": "surveillance:type=ALPR is displayed as \"This is an ALPR (Automatic License Plate Reader)\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#has_alpr", + "icon_url": "./assets/layers/surveillance_camera/ALPR.svg" }, { "key": "camera:type", - "description": "Layer 'Surveillance camera's' shows camera:type=fixed with a fixed text, namely 'A fixed (non-moving) camera' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "fixed" + "value": "fixed", + "description": "camera:type=fixed is displayed as \"A fixed (non-moving) camera\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Camera_type__fixed__panning__dome", + "icon_url": "./assets/themes/surveillance/cam_right.svg" }, { "key": "camera:type", - "description": "Layer 'Surveillance camera's' shows camera:type=dome with a fixed text, namely 'A dome camera (which can turn)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "dome" + "value": "dome", + "description": "camera:type=dome is displayed as \"A dome camera (which can turn)\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Camera_type__fixed__panning__dome", + "icon_url": "./assets/themes/surveillance/dome.svg" }, { "key": "camera:type", - "description": "Layer 'Surveillance camera's' shows camera:type=panning with a fixed text, namely 'A panning camera' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "panning" + "value": "panning", + "description": "camera:type=panning is displayed as \"A panning camera\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Camera_type__fixed__panning__dome", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "camera:type", - "description": "Layer 'Surveillance camera's' shows camera:type=doorbell with a fixed text, namely 'A doorbell which might be turned on remotely at any time or by motion detection. These are typically Smart, internet-connected doorbells. Typical brands are Ring, Google Nest, Eufy, ...' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "doorbell" + "value": "doorbell", + "description": "camera:type=doorbell is displayed as \"A doorbell which might be turned on remotely at any time or by motion detection. These are typically Smart, internet-connected doorbells. Typical brands are Ring, Google Nest, Eufy, ...\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Camera_type__fixed__panning__dome", + "icon_url": "./assets/layers/surveillance_camera/doorbell.svg" }, { "key": "camera:direction", - "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'camera:direction' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if camera:direction~.+ | direction~.+ | camera:type!=dome | (camera:type=dome & camera:mount=wall))" + "description": "Values of `camera:direction` are shown with \"Films to a compass heading of {camera:direction}\" and can be updated. The question is \"In which geographical direction does this camera film?\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_direction", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "camera:direction", - "description": "Layer 'Surveillance camera's' shows camera:direction= & direction~.+ with a fixed text, namely 'Films to a compass heading of {direction}' (in the mapcomplete.org theme 'Surveillance under Surveillance') Picking this answer will delete the key camera:direction. (This is only shown if camera:direction~.+ | direction~.+ | camera:type!=dome | (camera:type=dome & camera:mount=wall))", - "value": "" + "description": "camera:direction= & direction~.+ is displayed as \"Films to a compass heading of {direction}\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_direction", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "direction", - "description": "Layer 'Surveillance camera's' shows camera:direction= & direction~.+ with a fixed text, namely 'Films to a compass heading of {direction}' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if camera:direction~.+ | direction~.+ | camera:type!=dome | (camera:type=dome & camera:mount=wall))" + "description": "camera:direction= & direction~.+ is displayed as \"Films to a compass heading of {direction}\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_direction", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "operator", - "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who operates this CCTV?\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Operator", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=public with a fixed text, namely 'A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "public" + "value": "public", + "description": "surveillance=public is displayed as \"A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel, …\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_type__public__outdoor__indoor", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=outdoor with a fixed text, namely 'An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "outdoor" + "value": "outdoor", + "description": "surveillance=outdoor is displayed as \"An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …)\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_type__public__outdoor__indoor", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance", - "description": "Layer 'Surveillance camera's' shows surveillance=indoor with a fixed text, namely 'A private indoor area is surveilled, e.g. a shop, a private underground parking, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "indoor" + "value": "indoor", + "description": "surveillance=indoor is displayed as \"A private indoor area is surveilled, e.g. a shop, a private underground parking, …\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_type__public__outdoor__indoor", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "indoor", - "description": "Layer 'Surveillance camera's' shows indoor=yes with a fixed text, namely 'This camera is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if surveillance!=outdoor & surveillance!=indoor)", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This camera is located indoors\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_is_indoor", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "indoor", - "description": "Layer 'Surveillance camera's' shows indoor=no with a fixed text, namely 'This camera is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if surveillance!=outdoor & surveillance!=indoor)", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This camera is located outdoors\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_is_indoor", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "indoor", - "description": "Layer 'Surveillance camera's' shows indoor= with a fixed text, namely 'This camera is probably located outdoors' (in the mapcomplete.org theme 'Surveillance under Surveillance') Picking this answer will delete the key indoor. (This is only shown if surveillance!=outdoor & surveillance!=indoor)", - "value": "" + "description": "indoor= is displayed as \"This camera is probably located outdoors\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_is_indoor", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "level", - "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if camera:type!=doorbell & (indoor=yes | surveillance=indoor) & (surveillance:type=alpr | surveillance:type=camera))" + "description": "Values of `level` are shown with \"Located on level {level}\" and can be updated. The question is \"On which level is this camera located?\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Level", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:zone", - "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'surveillance:zone' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `surveillance:zone` are shown with \"Surveills a {surveillance:zone}\" and can be updated. The question is \"What exactly is surveilled here?\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:zone", - "description": "Layer 'Surveillance camera's' shows surveillance:zone=parking with a fixed text, namely 'Surveills a parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "parking" + "value": "parking", + "description": "surveillance:zone=parking is displayed as \"Surveills a parking\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:zone", - "description": "Layer 'Surveillance camera's' shows surveillance:zone=traffic with a fixed text, namely 'Surveills the traffic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "traffic" + "value": "traffic", + "description": "surveillance:zone=traffic is displayed as \"Surveills the traffic\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:zone", - "description": "Layer 'Surveillance camera's' shows surveillance:zone=entrance with a fixed text, namely 'Surveills an entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "entrance" + "value": "entrance", + "description": "surveillance:zone=entrance is displayed as \"Surveills an entrance\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:zone", - "description": "Layer 'Surveillance camera's' shows surveillance:zone=corridor with a fixed text, namely 'Surveills a corridor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "corridor" + "value": "corridor", + "description": "surveillance:zone=corridor is displayed as \"Surveills a corridor\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:zone", - "description": "Layer 'Surveillance camera's' shows surveillance:zone=public_transport_platform with a fixed text, namely 'Surveills a public tranport platform' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "public_transport_platform" + "value": "public_transport_platform", + "description": "surveillance:zone=public_transport_platform is displayed as \"Surveills a public tranport platform\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "surveillance:zone", - "description": "Layer 'Surveillance camera's' shows surveillance:zone=shop with a fixed text, namely 'Surveills a shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "shop" + "value": "shop", + "description": "surveillance:zone=shop is displayed as \"Surveills a shop\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "camera:mount", - "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'camera:mount' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `camera:mount` are shown with \"Mounting method: {camera:mount}\" and can be updated. The question is \"How is this camera placed?\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "camera:mount", - "description": "Layer 'Surveillance camera's' shows camera:mount=wall with a fixed text, namely 'This camera is placed against a wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "wall" + "value": "wall", + "description": "camera:mount=wall is displayed as \"This camera is placed against a wall\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "camera:mount", - "description": "Layer 'Surveillance camera's' shows camera:mount=pole with a fixed text, namely 'This camera is placed on a pole' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "pole" + "value": "pole", + "description": "camera:mount=pole is displayed as \"This camera is placed on a pole\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "camera:mount", - "description": "Layer 'Surveillance camera's' shows camera:mount=ceiling with a fixed text, namely 'This camera is placed on the ceiling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "ceiling" + "value": "ceiling", + "description": "camera:mount=ceiling is displayed as \"This camera is placed on the ceiling\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "camera:mount", - "description": "Layer 'Surveillance camera's' shows camera:mount=street_lamp with a fixed text, namely 'This camera is placed on a street light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "street_lamp" + "value": "street_lamp", + "description": "camera:mount=street_lamp is displayed as \"This camera is placed on a street light\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "camera:mount", - "description": "Layer 'Surveillance camera's' shows camera:mount=tree with a fixed text, namely 'This camera is placed on a tree' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "tree" + "value": "tree", + "description": "camera:mount=tree is displayed as \"This camera is placed on a tree\" by layer Surveillance camera's", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount", + "icon_url": "./assets/themes/surveillance/logo.svg" }, { "key": "highway", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Speed Camera showing features with this tag", - "value": "speed_camera" - }, - { - "key": "id", - "description": "Layer 'Speed Camera' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "speed_camera", + "description": "Features with this tag are displayed by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "maxspeed", - "description": "Layer 'Speed Camera' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `maxspeed` are shown with \"The maximum speed allowed is {canonical(maxspeed)}\" and can be updated. The question is \"What is the maximum speed allowed at this speed camera?\" by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#maxspeed", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "direction", - "description": "Layer 'Speed Camera' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `direction` are shown with \"Films to a compass heading of {direction}\" and can be updated. The question is \"In which geographical direction does this camera film?\" by layer Speed Camera", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#camera_direction", + "icon_url": "./assets/layers/speed_camera/speed_camera.svg" }, { "key": "amenity", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Police stations showing features with this tag", - "value": "police" + "value": "police", + "description": "Features with this tag are displayed by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "police", - "description": "The MapComplete theme Surveillance under Surveillance has a layer Police stations showing features with this tag" - }, - { - "key": "id", - "description": "Layer 'Police stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Features with this tag are displayed by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "name", - "description": "Layer 'Police stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this police facility?\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#police_name", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "phone", - "description": "Layer 'Police stations' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Police stations' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "email", - "description": "Layer 'Police stations' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Police stations' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Police stations' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "website", - "description": "Layer 'Police stations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Police stations' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "opening_hours", - "description": "Layer 'Police stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Surveillance under Surveillance')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#opening_hours", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "opening_hours", - "description": "Layer 'Police stations' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Surveillance under Surveillance')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#opening_hours", + "icon_url": "./assets/layers/police/police.svg" }, { "key": "detention", - "description": "Layer 'Police stations' shows detention=yes with a fixed text, namely 'This police office has some cells to detain people' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if amenity=police)", - "value": "yes" + "value": "yes", + "description": "detention=yes is displayed as \"This police office has some cells to detain people\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#4_z2nrdhy6tyyh4fd", + "icon_url": "./assets/layers/police/jail.svg" }, { "key": "detention", - "description": "Layer 'Police stations' shows detention=no with a fixed text, namely 'This police office does not have cells to detain people' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if amenity=police)", - "value": "no" + "value": "no", + "description": "detention=no is displayed as \"This police office does not have cells to detain people\" by layer Police stations", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#4_z2nrdhy6tyyh4fd", + "icon_url": "./assets/layers/police/police.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_toilets.json b/Docs/TagInfo/mapcomplete_toilets.json index f98ce14c3b..66b86b228b 100644 --- a/Docs/TagInfo/mapcomplete_toilets.json +++ b/Docs/TagInfo/mapcomplete_toilets.json @@ -7,686 +7,658 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/toilets/toilets.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Public toilets has a layer Toilets showing features with this tag", - "value": "toilets" + "value": "toilets", + "description": "Features with this tag are displayed by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "id", - "description": "Layer 'Toilets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Public toilets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#images", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "panoramax", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#images", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "mapillary", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#images", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wikidata", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#images", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wikipedia", - "description": "The layer 'Toilets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#images", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "level", - "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Public toilets') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "location", - "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Public toilets') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "level", - "description": "Layer 'Toilets' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "level", - "description": "Layer 'Toilets' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Public toilets') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "level", - "description": "Layer 'Toilets' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "level", - "description": "Layer 'Toilets' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#single_level", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Public toilets')" + "description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Are these toilets publicly accessible?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "access", - "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only access to customers\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"Not accessible\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "lock" }, { "key": "access", - "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"Accessible, but one has to ask a key to enter\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "key" }, { "key": "access", - "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Public toilets')", - "value": "public" + "value": "public", + "description": "access=public is displayed as \"Public access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "fee", - "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if access!=no)", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"These are paid toilets\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "fee", - "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if access!=no)", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "charge", - "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)" + "description": "Values of `charge` are shown with \"The fee is {charge}\" and can be updated. The question is \"How much does one have to pay for these toilets?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_charge", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "payment:cash", - "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Toilets, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Toilets, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Toilets' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Toilets, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:coins", - "description": "Layer 'Toilets' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layers Toilets, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Toilets' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layers Toilets, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Toilets' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layers Toilets, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Toilets' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layers Toilets, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Public toilets') (This is only shown if access!=no)" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When are these toilets opened?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if access!=no)", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Public toilets') (This is only shown if access!=no)", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Toilets, Toilets at other amenities, Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#opening_hours_24_7", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"No wheelchair access\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "wheelchair", - "description": "Layer 'Toilets' shows wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "door:width", - "description": "Layer 'Toilets' shows and asks freeform values for key 'door:width' (in the mapcomplete.org theme 'Public toilets') (This is only shown if (wheelchair=yes | wheelchair=designated))" + "description": "Values of `door:width` are shown with \"The door to the wheelchair-accessible toilet is {canonical(door:width)} wide\" and can be updated. The question is \"What is the width of the door to the wheelchair accessible toilet?\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#wheelchair_door_width", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "seated" + "value": "seated", + "description": "toilets:position=seated is displayed as \"There are only seated toilets\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "urinal" + "value": "urinal", + "description": "toilets:position=urinal is displayed as \"There are only urinals here\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "squat" + "value": "squat", + "description": "toilets:position=squat is displayed as \"There are only squat toilets here\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:position", - "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "seated;urinal" + "value": "seated;urinal", + "description": "toilets:position=seated;urinal is displayed as \"Both seated toilets and urinals are available here\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_type", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=yes with a fixed text, namely 'There is a separate, signposted area for men and women' 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": "yes" + "value": "yes", + "description": "gender_segregated=yes is displayed as \"There is a separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "gender_segregated", - "description": "Layer 'Toilets' shows gender_segregated=no with a fixed text, namely 'There is no separate, signposted area for men and women' 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" + "value": "no", + "description": "gender_segregated=no is displayed as \"There is no separate, signposted area for men and women\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#gender_segregated", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=yes with a fixed text, namely 'Free menstrual products are available to all visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "toilets:menstrual_products=yes is displayed as \"Free menstrual products are available to all visitors of these toilets\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=limited with a fixed text, namely 'Free menstrual products are available to some visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "limited" + "value": "limited", + "description": "toilets:menstrual_products=limited is displayed as \"Free menstrual products are available to some visitors of these toilets\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products", - "description": "Layer 'Toilets' shows toilets:menstrual_products=no with a fixed text, namely 'No free menstrual products are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" + "value": "no", + "description": "toilets:menstrual_products=no is displayed as \"No free menstrual products are available here\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'toilets:menstrual_products:location' (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)" + "description": "Values of `toilets:menstrual_products:location` are shown with \"The menstrual products are located in {toilets:menstrual_products:location}\" and can be updated. The question is \"Where are the free menstrual products located?\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=female_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "female_toilet" + "value": "female_toilet", + "description": "toilets:menstrual_products:location=female_toilet is displayed as \"The free, menstrual products are located in the toilet for women\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=male_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "male_toilet" + "value": "male_toilet", + "description": "toilets:menstrual_products:location=male_toilet is displayed as \"The free, menstrual products are located in the toilet for men\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets' shows toilets:menstrual_products:location=wheelchair_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "toilets:menstrual_products:location=wheelchair_toilet is displayed as \"The free, menstrual products are located in the toilet for wheelchair users\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#menstrual_products_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "changing_table=yes is displayed as \"A changing table is available\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/baby.svg" }, { "key": "changing_table", - "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" + "value": "no", + "description": "changing_table=no is displayed as \"No changing table is available\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilets_changing_table", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'Public toilets') (This is only shown if changing_table=yes)" + "description": "Values of `changing_table:location` are shown with \"A changing table is located at {changing_table:location}\" and can be updated. The question is \"Where is the changing table located?\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'A changing table is in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if changing_table=yes)", - "value": "female_toilet" + "value": "female_toilet", + "description": "changing_table:location=female_toilet is displayed as \"A changing table is in the toilet for women\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'A changing table is in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if changing_table=yes)", - "value": "male_toilet" + "value": "male_toilet", + "description": "changing_table:location=male_toilet is displayed as \"A changing table is in the toilet for men\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'A changing table is in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if changing_table=yes)", - "value": "wheelchair_toilet" + "value": "wheelchair_toilet", + "description": "changing_table:location=wheelchair_toilet is displayed as \"A changing table is in the toilet for wheelchair users\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "changing_table:location", - "description": "Layer 'Toilets' 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 'Public toilets') (This is only shown if changing_table=yes)", - "value": "dedicated_room" + "value": "dedicated_room", + "description": "changing_table:location=dedicated_room is displayed as \"A changing table is in a dedicated room\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_changing_table_location", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "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": "supervised", + "value": "yes", + "description": "supervised=yes is displayed as \"There is a person supervising these toilets during (most of) the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { - "key": "toilets:handwashing", - "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets don't 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": "supervised", + "value": "interval", + "description": "supervised=interval is displayed as \"There is a person supervising these toilets, but they are present only during certain times of the opening hours\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "supervised", + "value": "no", + "description": "supervised=no is displayed as \"These toilets are not supervised\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_supervised", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:paper_supplied", - "description": "Layer 'Toilets' 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 'Public toilets') (This is only shown if toilets:position!=urinal)", - "value": "yes" + "value": "yes", + "description": "toilets:paper_supplied=yes is displayed as \"This toilet is equipped with toilet paper\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:paper_supplied", - "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" + "value": "no", + "description": "toilets:paper_supplied=no is displayed as \"You have to bring your own toilet paper to this toilet\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_has_paper", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "yes", + "description": "toilets:handwashing=yes is displayed as \"These toilets have a sink to wash your hands\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:handwashing", + "value": "no", + "description": "toilets:handwashing=no is displayed as \"These toilets don't have a sink to wash your hands\" by layers Toilets, Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_handwashing", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "electric_hand_dryer", + "description": "toilets:hands_drying=electric_hand_dryer is displayed as \"Electric hand dryers are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "paper_towel", + "description": "toilets:hands_drying=paper_towel is displayed as \"Paper towels are available for drying hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel_cabinet", + "description": "toilets:hands_drying=towel_cabinet is displayed as \"A towel roll cabinet is available for drying hands\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "towel", + "description": "toilets:hands_drying=towel is displayed as \"A fabric towel available to dry your hands.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" + }, + { + "key": "toilets:hands_drying", + "value": "no", + "description": "toilets:hands_drying=no is displayed as \"There are no hand drying facilities available.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#toilet_drying", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "description", - "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Public toilets')" + "description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Toilets", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet.md#description", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets", - "description": "The MapComplete theme Public toilets has a layer Toilets at other amenities showing features with this tag", - "value": "yes" - }, - { - "key": "id", - "description": "Layer 'Toilets at other amenities' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Public toilets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Toilets at other amenities allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets at other amenities allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets at other amenities allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets at other amenities allows to upload images and adds them under the 'panoramax'-tag (and 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 'Toilets at other amenities allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Toilets at other amenities' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Public toilets') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Toilets at other amenities' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Public toilets') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Toilets at other amenities' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Toilets at other amenities' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Public toilets') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Toilets at other amenities' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Toilets at other amenities' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "-1" + "value": "yes", + "description": "Features with this tag are displayed by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:access", - "description": "Layer 'Toilets at other amenities' shows and asks freeform values for key 'toilets:access' (in the mapcomplete.org theme 'Public toilets')" + "description": "Values of `toilets:access` are shown with \"Access is {toilets:access}\" and can be updated. The question is \"Are these toilets publicly accessible?\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:access", - "description": "Layer 'Toilets at other amenities' shows toilets:access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "toilets:access=yes is displayed as \"Public access\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:access", - "description": "Layer 'Toilets at other amenities' shows toilets:access=customers with a fixed text, namely 'Only access to customers of the amenity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "customers" + "value": "customers", + "description": "toilets:access=customers is displayed as \"Only access to customers of the amenity\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:access", - "description": "Layer 'Toilets at other amenities' shows toilets:access=no with a fixed text, namely 'Not accessible, even for customers of the amenity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" + "value": "no", + "description": "toilets:access=no is displayed as \"Not accessible, even for customers of the amenity\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:access", - "description": "Layer 'Toilets at other amenities' shows toilets:access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "key" + "value": "key", + "description": "toilets:access=key is displayed as \"Accessible, but one has to ask a key to enter\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:access", - "description": "Layer 'Toilets at other amenities' shows toilets:access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Public toilets')", - "value": "public" + "value": "public", + "description": "toilets:access=public is displayed as \"Public access\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilet_access", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:fee", - "description": "Layer 'Toilets at other amenities' shows toilets:fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:access!=no)", - "value": "yes" + "value": "yes", + "description": "toilets:fee=yes is displayed as \"These are paid toilets\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:fee", - "description": "Layer 'Toilets at other amenities' shows toilets:fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:access!=no)", - "value": "no" + "value": "no", + "description": "toilets:fee=no is displayed as \"Free to use\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilets_fee", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:charge", - "description": "Layer 'Toilets at other amenities' shows and asks freeform values for key 'toilets:charge' (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:fee=yes)" + "description": "Values of `toilets:charge` are shown with \"The fee is {toilets:charge}\" and can be updated. The question is \"How much does one have to pay for these toilets?\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilet_charge", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "opening_hours", - "description": "Layer 'Toilets at other amenities' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:access!=no)" - }, - { - "key": "opening_hours", - "description": "Layer 'Toilets at other amenities' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:access!=no)", - "value": "closed" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is the amenity where these toilets are located open?\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#opening_hours", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Toilets at other amenities' shows toilets:wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "toilets:wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Toilets at other amenities' shows toilets:wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" + "value": "no", + "description": "toilets:wheelchair=no is displayed as \"No wheelchair access\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:wheelchair", - "description": "Layer 'Toilets at other amenities' shows toilets:wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "designated" + "value": "designated", + "description": "toilets:wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#toilets_wheelchair", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:door:width", - "description": "Layer 'Toilets at other amenities' shows and asks freeform values for key 'toilets:door:width' (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:wheelchair=yes | toilets:wheelchair=designated)" - }, - { - "key": "toilets:position", - "description": "Layer 'Toilets at other amenities' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "seated" - }, - { - "key": "toilets:position", - "description": "Layer 'Toilets at other amenities' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "urinal" - }, - { - "key": "toilets:position", - "description": "Layer 'Toilets at other amenities' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "squat" - }, - { - "key": "toilets:position", - "description": "Layer 'Toilets at other amenities' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "seated;urinal" - }, - { - "key": "changing_table", - "description": "Layer 'Toilets at other amenities' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" - }, - { - "key": "changing_table", - "description": "Layer 'Toilets at other amenities' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets at other amenities' shows and asks freeform values for key 'changing_table:location' (in the mapcomplete.org theme 'Public toilets') (This is only shown if changing_table=yes)" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets at other amenities' shows changing_table:location=female_toilet with a fixed text, namely 'A changing table is in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if changing_table=yes)", - "value": "female_toilet" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets at other amenities' shows changing_table:location=male_toilet with a fixed text, namely 'A changing table is in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if changing_table=yes)", - "value": "male_toilet" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets at other amenities' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'A changing table is in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if changing_table=yes)", - "value": "wheelchair_toilet" - }, - { - "key": "changing_table:location", - "description": "Layer 'Toilets at other amenities' 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 'Public toilets') (This is only shown if changing_table=yes)", - "value": "dedicated_room" - }, - { - "key": "toilets:handwashing", - "description": "Layer 'Toilets at other amenities' 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 at other amenities' shows toilets:handwashing=no with a fixed text, namely 'These toilets don't 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:paper_supplied", - "description": "Layer 'Toilets at other amenities' 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 'Public toilets') (This is only shown if toilets:position!=urinal)", - "value": "yes" - }, - { - "key": "toilets:paper_supplied", - "description": "Layer 'Toilets at other amenities' 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:menstrual_products", - "description": "Layer 'Toilets at other amenities' shows toilets:menstrual_products=yes with a fixed text, namely 'Free menstrual products are available to all visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" - }, - { - "key": "toilets:menstrual_products", - "description": "Layer 'Toilets at other amenities' shows toilets:menstrual_products=limited with a fixed text, namely 'Free menstrual products are available to some visitors of these toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "limited" - }, - { - "key": "toilets:menstrual_products", - "description": "Layer 'Toilets at other amenities' shows toilets:menstrual_products=no with a fixed text, namely 'No free menstrual products are available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" - }, - { - "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets at other amenities' shows and asks freeform values for key 'toilets:menstrual_products:location' (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)" - }, - { - "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets at other amenities' shows toilets:menstrual_products:location=female_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for women' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "female_toilet" - }, - { - "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets at other amenities' shows toilets:menstrual_products:location=male_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for men' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "male_toilet" - }, - { - "key": "toilets:menstrual_products:location", - "description": "Layer 'Toilets at other amenities' shows toilets:menstrual_products:location=wheelchair_toilet with a fixed text, namely 'The free, menstrual products are located in the toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:menstrual_products=limited | toilets:menstrual_products:location~.+)", - "value": "wheelchair_toilet" + "description": "Values of `toilets:door:width` are shown with \"The door to the wheelchair-accessible toilet is {canonical(toilets:door:width)} wide\" and can be updated. The question is \"What is the width of the door to the wheelchair accessible toilet?\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#wheelchair_door_width", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "toilets:description", - "description": "Layer 'Toilets at other amenities' shows and asks freeform values for key 'toilets:description' (in the mapcomplete.org theme 'Public toilets')" + "description": "Values of `toilets:description` are shown with \"{toilets:description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Toilets at other amenities", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toilet_at_amenity.md#description", + "icon_url": "./assets/layers/toilet/toilets.svg" }, { "key": "amenity", - "description": "The MapComplete theme Public toilets has a layer Shower showing features with this tag", - "value": "shower" - }, - { - "key": "id", - "description": "Layer 'Shower' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Public toilets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shower allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shower allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shower allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shower allows to upload images and adds them under the 'panoramax'-tag (and 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 'Shower allows to upload images and adds them under the 'panoramax'-tag (and 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": "level", - "description": "Layer 'Shower' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Public toilets') (This is only shown if repeat_on=)" - }, - { - "key": "location", - "description": "Layer 'Shower' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Public toilets') (This is only shown if repeat_on=)", - "value": "underground" - }, - { - "key": "level", - "description": "Layer 'Shower' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "0" - }, - { - "key": "level", - "description": "Layer 'Shower' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Public toilets') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" - }, - { - "key": "level", - "description": "Layer 'Shower' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "1" - }, - { - "key": "level", - "description": "Layer 'Shower' 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 'Public toilets') (This is only shown if repeat_on=)", - "value": "-1" + "value": "shower", + "description": "Features with this tag are displayed by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "access", - "description": "Layer 'Shower' shows access=yes with a fixed text, namely 'Anyone can use this shower' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Anyone can use this shower\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#access", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "access", - "description": "Layer 'Shower' shows access=customers with a fixed text, namely 'Only customers can use this shower' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Only customers can use this shower\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#access", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "access", - "description": "Layer 'Shower' shows access=key with a fixed text, namely 'Accesible, but one has to ask for a key' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "key" + "value": "key", + "description": "access=key is displayed as \"Accesible, but one has to ask for a key\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#access", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "fee", - "description": "Layer 'Shower' shows fee=yes with a fixed text, namely 'There is a fee for using this shower' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"There is a fee for using this shower\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#fee", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "fee", - "description": "Layer 'Shower' shows fee=no with a fixed text, namely 'This shower is free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"This shower is free to use\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#fee", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "charge", - "description": "Layer 'Shower' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes)" + "description": "Values of `charge` are shown with \"It costs {charge} to use this shower\" and can be updated. The question is \"How much does it cost to use this shower?\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#charge", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "opening_hours", - "description": "Layer 'Shower' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Public toilets')" - }, - { - "key": "opening_hours", - "description": "Layer 'Shower' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Public toilets')", - "value": "closed" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#opening_hours", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "hot_water", - "description": "Layer 'Shower' shows hot_water=yes with a fixed text, namely 'Hot water is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "yes" + "value": "yes", + "description": "hot_water=yes is displayed as \"Hot water is available here\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#hot_water", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "hot_water", - "description": "Layer 'Shower' shows hot_water=fee with a fixed text, namely 'Hot water is available here, but there is a fee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "fee" + "value": "fee", + "description": "hot_water=fee is displayed as \"Hot water is available here, but there is a fee\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#hot_water", + "icon_url": "./assets/layers/shower/shower.svg" }, { "key": "hot_water", - "description": "Layer 'Shower' shows hot_water=no with a fixed text, namely 'There is no hot water available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')", - "value": "no" - }, - { - "key": "payment:cash", - "description": "Layer 'Shower' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes | hot_water=fee)", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Shower' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes | hot_water=fee)", - "value": "yes" - }, - { - "key": "payment:qr_code", - "description": "Layer 'Shower' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes | hot_water=fee)", - "value": "yes" - }, - { - "key": "payment:coins", - "description": "Layer 'Shower' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes | hot_water=fee)", - "value": "yes" - }, - { - "key": "payment:notes", - "description": "Layer 'Shower' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes | hot_water=fee)", - "value": "yes" - }, - { - "key": "payment:debit_cards", - "description": "Layer 'Shower' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes | hot_water=fee)", - "value": "yes" - }, - { - "key": "payment:credit_cards", - "description": "Layer 'Shower' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if fee=yes | hot_water=fee)", - "value": "yes" + "value": "no", + "description": "hot_water=no is displayed as \"There is no hot water available here\" by layer Shower", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shower.md#hot_water", + "icon_url": "./assets/layers/shower/shower.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_transit.json b/Docs/TagInfo/mapcomplete_transit.json index 0de70fc4cd..6c57473def 100644 --- a/Docs/TagInfo/mapcomplete_transit.json +++ b/Docs/TagInfo/mapcomplete_transit.json @@ -7,641 +7,789 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/transit_stops/bus_stop.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "highway", - "description": "The MapComplete theme Bus routes has a layer Transit Stops showing features with this tag", - "value": "bus_stop" + "value": "bus_stop", + "description": "Features with this tag are displayed by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "id", - "description": "Layer 'Transit Stops' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bus routes') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Transit Stops, Bus lines, Bike parking, Parking, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "name", - "description": "Layer 'Transit Stops' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `name` are shown with \"This stop is called {name}\" and can be updated. The question is \"What is the name of this stop?\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#stop_name", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "noname", - "description": "Layer 'Transit Stops' shows noname=yes & name= with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "noname=yes & name= is displayed as \"This stop has no name\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#stop_name", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "name", - "description": "Layer 'Transit Stops' shows noname=yes & name= with a fixed text, namely 'This stop has no name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') Picking this answer will delete the key name.", - "value": "" + "description": "noname=yes & name= is displayed as \"This stop has no name\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#stop_name", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "image", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Transit Stops, Bike parking, Parking, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#images", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "panoramax", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Transit Stops, Bike parking, Parking, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#images", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "mapillary", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Transit Stops, Bike parking, Parking, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#images", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wikidata", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Transit Stops, Bike parking, Parking, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#images", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wikipedia", - "description": "The layer 'Transit Stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Transit Stops, Bike parking, Parking, Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#images", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "shelter", - "description": "Layer 'Transit Stops' shows shelter=yes with a fixed text, namely 'This stop has a shelter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "shelter=yes is displayed as \"This stop has a shelter\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#shelter", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "shelter", - "description": "Layer 'Transit Stops' shows shelter=no with a fixed text, namely 'This stop does not have a shelter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "shelter=no is displayed as \"This stop does not have a shelter\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#shelter", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "shelter", - "description": "Layer 'Transit Stops' shows shelter=separate with a fixed text, namely 'This stop has a shelter, that's separately mapped' (in the mapcomplete.org theme 'Bus routes')", - "value": "separate" + "value": "separate", + "description": "shelter=separate is displayed as \"This stop has a shelter, that's separately mapped\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#shelter", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bench", - "description": "Layer 'Transit Stops' shows bench=yes with a fixed text, namely 'This stop has a bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "bench=yes is displayed as \"This stop has a bench\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bench", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bench", - "description": "Layer 'Transit Stops' shows bench=no with a fixed text, namely 'This stop does not have a bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "bench=no is displayed as \"This stop does not have a bench\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bench", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bench", - "description": "Layer 'Transit Stops' shows bench=separate with a fixed text, namely 'This stop has a bench, that's separately mapped' (in the mapcomplete.org theme 'Bus routes')", - "value": "separate" + "value": "separate", + "description": "bench=separate is displayed as \"This stop has a bench, that's separately mapped\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bench", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bin", - "description": "Layer 'Transit Stops' shows bin=yes with a fixed text, namely 'This stop has a bin' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "bin=yes is displayed as \"This stop has a bin\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bin", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bin", - "description": "Layer 'Transit Stops' shows bin=no with a fixed text, namely 'This stop does not have a bin' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "bin=no is displayed as \"This stop does not have a bin\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bin", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "bin", - "description": "Layer 'Transit Stops' shows bin=separate with a fixed text, namely 'This stop has a bin, that's separately mapped' (in the mapcomplete.org theme 'Bus routes')", - "value": "separate" + "value": "separate", + "description": "bin=separate is displayed as \"This stop has a bin, that's separately mapped\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#bin", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wheelchair", - "description": "Layer 'Transit Stops' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "designated" + "value": "designated", + "description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#wheelchair_access", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wheelchair", - "description": "Layer 'Transit Stops' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#wheelchair_access", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wheelchair", - "description": "Layer 'Transit Stops' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "limited" + "value": "limited", + "description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#wheelchair_access", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "wheelchair", - "description": "Layer 'Transit Stops' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#wheelchair_access", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "tactile_paving", - "description": "Layer 'Transit Stops' shows tactile_paving=yes with a fixed text, namely 'This stop has tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "tactile_paving=yes is displayed as \"This stop has tactile paving\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#tactile_paving", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "tactile_paving", - "description": "Layer 'Transit Stops' shows tactile_paving=no with a fixed text, namely 'This stop does not have tactile paving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "tactile_paving=no is displayed as \"This stop does not have tactile paving\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#tactile_paving", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "lit", - "description": "Layer 'Transit Stops' shows lit=yes with a fixed text, namely 'This stop is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "lit=yes is displayed as \"This stop is lit\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#lit", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "lit", - "description": "Layer 'Transit Stops' shows lit=no with a fixed text, namely 'This stop is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "lit=no is displayed as \"This stop is not lit\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#lit", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=yes with a fixed text, namely 'This stop has a departures board of unknown type' (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "departures_board=yes is displayed as \"This stop has a departures board of unknown type\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=realtime with a fixed text, namely 'This stop has a board showing realtime departure information' (in the mapcomplete.org theme 'Bus routes')", - "value": "realtime" + "value": "realtime", + "description": "departures_board=realtime is displayed as \"This stop has a board showing realtime departure information\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "passenger_information_display", - "description": "Layer 'Transit Stops' shows passenger_information_display=yes with a fixed text, namely 'This stop has a board showing realtime departure information' (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "passenger_information_display=yes is displayed as \"This stop has a board showing realtime departure information\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=timetable with a fixed text, namely 'This stop has a timetable showing regular departures' (in the mapcomplete.org theme 'Bus routes')", - "value": "timetable" + "value": "timetable", + "description": "departures_board=timetable is displayed as \"This stop has a timetable showing regular departures\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=interval with a fixed text, namely 'This stop has a timetable containing just the interval between departures' (in the mapcomplete.org theme 'Bus routes')", - "value": "interval" + "value": "interval", + "description": "departures_board=interval is displayed as \"This stop has a timetable containing just the interval between departures\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "departures_board", - "description": "Layer 'Transit Stops' shows departures_board=no with a fixed text, namely 'This stop does not have a departures board' (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "departures_board=no is displayed as \"This stop does not have a departures board\" by layer Transit Stops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_stops.md#departures_board", + "icon_url": "./assets/layers/transit_stops/bus_stop.svg" }, { "key": "type", - "description": "The MapComplete theme Bus routes has a layer Bus lines showing features with this tag", - "value": "route" + "value": "route", + "description": "Features with this tag are displayed by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md" }, { "key": "route", - "description": "The MapComplete theme Bus routes has a layer Bus lines showing features with this tag", - "value": "bus" - }, - { - "key": "id", - "description": "Layer 'Bus lines' 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 'Bus routes') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "value": "bus", + "description": "Features with this tag are displayed by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md" }, { "key": "name", - "description": "Layer 'Bus lines' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name for this bus line? (i.e. Bus XX: From => Via => To)\" by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md#name" }, { "key": "from", - "description": "Layer 'Bus lines' shows and asks freeform values for key 'from' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `from` are shown with \"This bus line begins at {from}\" and can be updated. The question is \"What is the starting point for this bus line?\" by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md#from" }, { "key": "via", - "description": "Layer 'Bus lines' shows and asks freeform values for key 'via' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `via` are shown with \"This bus line goes via {via}\" and can be updated. The question is \"What is the via point for this bus line?\" by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md#via" }, { "key": "to", - "description": "Layer 'Bus lines' shows and asks freeform values for key 'to' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `to` are shown with \"This bus line ends at {to}\" and can be updated. The question is \"What is the ending point for this bus line?\" by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md#to" }, { "key": "colour", - "description": "Layer 'Bus lines' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `colour` are shown with \"This bus line has the color {colour}\" and can be updated. The question is \"What is the colour for this bus line?\" by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md#colour" }, { "key": "network", - "description": "Layer 'Bus lines' shows and asks freeform values for key 'network' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `network` are shown with \"This bus line is part of the {network} network\" and can be updated. The question is \"What network does this bus line belong to?\" by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md#network" }, { "key": "operator", - "description": "Layer 'Bus lines' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `operator` are shown with \"This bus line is operated by {operator}\" and can be updated. The question is \"What company operates this bus line?\" by layer Bus lines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/transit_routes.md#operator" }, { "key": "amenity", - "description": "The MapComplete theme Bus routes has a layer Bike parking showing features with this tag", - "value": "bicycle_parking" - }, - { - "key": "id", - "description": "Layer 'Bike parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bus routes') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "bicycle_parking", + "description": "Features with this tag are displayed by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'bicycle_parking' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `bicycle_parking` are shown with \"This is a bicycle parking of the type: {bicycle_parking}\" and can be updated. The question is \"What is the type of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=stands with a fixed text, namely 'Stands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "stands" + "value": "stands", + "description": "bicycle_parking=stands is displayed as \"Stands\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/staple.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=safe_loops with a fixed text, namely 'Rack with side loops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "safe_loops" + "value": "safe_loops", + "description": "bicycle_parking=safe_loops is displayed as \"Rack with side loops\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/safe_loops.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=wall_loops with a fixed text, namely 'Wheelbenders / rack' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "wall_loops" + "value": "wall_loops", + "description": "bicycle_parking=wall_loops is displayed as \"Wheelbenders / rack\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/wall_loops.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=handlebar_holder with a fixed text, namely 'Handlebar holder' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "handlebar_holder" + "value": "handlebar_holder", + "description": "bicycle_parking=handlebar_holder is displayed as \"Handlebar holder\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/handlebar_holder.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=rack with a fixed text, namely 'Rack' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "rack" + "value": "rack", + "description": "bicycle_parking=rack is displayed as \"Rack\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/rack.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=two_tier with a fixed text, namely 'Two-tiered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "two_tier" + "value": "two_tier", + "description": "bicycle_parking=two_tier is displayed as \"Two-tiered\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/two_tier.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=shed with a fixed text, namely 'Shed' (in the mapcomplete.org theme 'Bus routes')", - "value": "shed" + "value": "shed", + "description": "bicycle_parking=shed is displayed as \"Shed\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/shed.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=bollard with a fixed text, namely 'Bollard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "bollard" + "value": "bollard", + "description": "bicycle_parking=bollard is displayed as \"Bollard\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/bollard.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=floor with a fixed text, namely 'An area on the floor which is marked for bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "floor" + "value": "floor", + "description": "bicycle_parking=floor is displayed as \"An area on the floor which is marked for bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=lockers with a fixed text, namely 'A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "lockers" + "value": "lockers", + "description": "bicycle_parking=lockers is displayed as \"A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "bicycle_parking", - "description": "Layer 'Bike parking' shows bicycle_parking=lean_and_stick with a fixed text, namely 'A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "lean_and_stick" + "value": "lean_and_stick", + "description": "bicycle_parking=lean_and_stick is displayed as \"A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=underground with a fixed text, namely 'Underground parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Underground parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=surface with a fixed text, namely 'Surface level parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "surface" + "value": "surface", + "description": "location=surface is displayed as \"Surface level parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location=rooftop with a fixed text, namely 'Rooftop parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "rooftop" + "value": "rooftop", + "description": "location=rooftop is displayed as \"Rooftop parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "location", - "description": "Layer 'Bike parking' shows location= with a fixed text, namely 'Surface level parking' (in the mapcomplete.org theme 'Bus routes') Picking this answer will delete the key location.", - "value": "" + "description": "location= is displayed as \"Surface level parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "building", - "description": "Layer 'Bike parking' shows building=bicycle_shed with a fixed text, namely 'This is a bicycle shed (with walls on at least three sides)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "bicycle_shed" + "value": "bicycle_shed", + "description": "building=bicycle_shed is displayed as \"This is a bicycle shed (with walls on at least three sides)\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "building", - "description": "Layer 'Bike parking' shows building=roof with a fixed text, namely 'This is a bicycle parking under a roof; the roof only serves the bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "roof" + "value": "roof", + "description": "building=roof is displayed as \"This is a bicycle parking under a roof; the roof only serves the bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "indoor", - "description": "Layer 'Bike parking' shows indoor=yes with a fixed text, namely 'This bicycle parking is located in a building behind a door or gate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This bicycle parking is located in a building behind a door or gate\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "indoor", - "description": "Layer 'Bike parking' shows indoor=no & covered=yes with a fixed text, namely 'This bicycle parking is under (a part of) a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "no" + "value": "no", + "description": "indoor=no & covered=yes is displayed as \"This bicycle parking is under (a part of) a building\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows indoor=no & covered=yes with a fixed text, namely 'This bicycle parking is under (a part of) a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "indoor=no & covered=yes is displayed as \"This bicycle parking is under (a part of) a building\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows covered=yes with a fixed text, namely 'This parking is covered (it has a roof)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "yes" + "value": "yes", + "description": "covered=yes is displayed as \"This parking is covered (it has a roof)\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "covered", - "description": "Layer 'Bike parking' shows covered=no with a fixed text, namely 'This parking is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') (This is only shown if bicycle_parking!=shed & location!=underground)", - "value": "no" + "value": "no", + "description": "covered=no is displayed as \"This parking is not covered\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "capacity", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `capacity` are shown with \"Place for {capacity} bikes\" and can be updated. The question is \"How many bicycles fit in this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Capacity", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `access` are shown with \"{access}\" and can be updated. The question is \"Who can use this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Publicly accessible\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=customers with a fixed text, namely 'Access is primarily for visitors to a business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "customers" + "value": "customers", + "description": "access=customers is displayed as \"Access is primarily for visitors to a business\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=members with a fixed text, namely 'Access is limited to members of a school, company or organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "members" + "value": "members", + "description": "access=members is displayed as \"Access is limited to members of a school, company or organisation\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "access", - "description": "Layer 'Bike parking' shows access=private with a fixed text, namely 'Private bicycle parking which is never available to the public, also not via a membership fee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"Private bicycle parking which is never available to the public, also not via a membership fee\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "fee", - "description": "Layer 'Bike parking' shows fee=yes with a fixed text, namely 'One has to pay to use this bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "fee=yes is displayed as \"One has to pay to use this bicycle parking\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#fee", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "fee", - "description": "Layer 'Bike parking' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "fee=no is displayed as \"Free to use\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#fee", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "charge", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Bus routes') (This is only shown if fee=yes)" + "description": "Values of `charge` are shown with \"Parking your bike costs {charge}\" and can be updated. The question is \"How much does it cost to park your bike here?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#charge", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "opening_hours", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "opening_hours", - "description": "Layer 'Bike parking' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Bike parking' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Bus routes')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "operator", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `operator` are shown with \"This bicycle parking is maintained by {operator}\" and can be updated. The question is \"Who maintains this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "operator:phone", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:phone' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `operator:phone` are shown with \"{operator:phone}\" and can be updated. The question is \"What is the phone number of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "phone", - "description": "Layer 'Bike parking' shows phone~.+ with a fixed text, namely '{phone}' (in the mapcomplete.org theme 'Bus routes')" + "description": "phone~.+ is displayed as \"{phone}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Bike parking' shows contact:phone~.+ with a fixed text, namely '{contact:phone}' (in the mapcomplete.org theme 'Bus routes')" + "description": "contact:phone~.+ is displayed as \"{contact:phone}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "operator:website", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:website' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `operator:website` are shown with \"{operator:website}\" and can be updated. The question is \"What is the website number of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "website", - "description": "Layer 'Bike parking' shows website~.+ with a fixed text, namely '{website}' (in the mapcomplete.org theme 'Bus routes')" + "description": "website~.+ is displayed as \"{website}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Bike parking' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Bus routes')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "operator:email", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:email' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `operator:email` are shown with \"{operator:email}\" and can be updated. The question is \"What is the email address of the operator of this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=yes with a fixed text, namely 'This parking has room for cargo bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "cargo_bike=yes is displayed as \"This parking has room for cargo bikes\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=designated with a fixed text, namely 'This parking has designated (official) spots for cargo bikes.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "designated" + "value": "designated", + "description": "cargo_bike=designated is displayed as \"This parking has designated (official) spots for cargo bikes.\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'You're not allowed to park cargo bikes or there are no places provided for cargo bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "cargo_bike=no is displayed as \"You're not allowed to park cargo bikes or there are no places provided for cargo bikes\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "capacity:cargo_bike", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the mapcomplete.org theme 'Bus routes') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)" + "description": "Values of `capacity:cargo_bike` are shown with \"This parking fits {capacity:cargo_bike} cargo bikes\" and can be updated. The question is \"How many cargo bicycles fit in this bicycle parking?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_capacity_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "cargo_bike", - "description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)", - "value": "no" + "value": "no", + "description": "cargo_bike=no is displayed as \"There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_capacity_", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Bike parking' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `maxstay` are shown with \"A bike can be parked here for at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum allowed parking duration?\" by layer Bike parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#maxstay", + "icon_url": "./assets/layers/bike_parking/parking.svg" }, { "key": "amenity", - "description": "The MapComplete theme Bus routes has a layer Parking showing features with this tag", - "value": "parking" - }, - { - "key": "id", - "description": "Layer 'Parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bus routes') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "parking", + "description": "Features with this tag are displayed by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Bus routes') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "location", - "description": "Layer 'Parking' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Bus routes') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' 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 'Bus routes') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Bus routes') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' 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 'Bus routes') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "level", - "description": "Layer 'Parking' 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 'Bus routes') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#single_level", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=surface with a fixed text, namely 'This is a surface parking lot' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "surface" + "value": "surface", + "description": "parking=surface is displayed as \"This is a surface parking lot\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=street_side with a fixed text, namely 'This is a parking bay next to a street' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "street_side" + "value": "street_side", + "description": "parking=street_side is displayed as \"This is a parking bay next to a street\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=underground with a fixed text, namely 'This is an underground parking garage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "underground" + "value": "underground", + "description": "parking=underground is displayed as \"This is an underground parking garage\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=multi-storey with a fixed text, namely 'This is a multi-storey parking garage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "multi-storey" + "value": "multi-storey", + "description": "parking=multi-storey is displayed as \"This is a multi-storey parking garage\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=rooftop with a fixed text, namely 'This is a rooftop parking deck' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "rooftop" + "value": "rooftop", + "description": "parking=rooftop is displayed as \"This is a rooftop parking deck\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=lane with a fixed text, namely 'This is a lane for parking on the road' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "lane" + "value": "lane", + "description": "parking=lane is displayed as \"This is a lane for parking on the road\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=carports with a fixed text, namely 'This is parking covered by carports' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "carports" + "value": "carports", + "description": "parking=carports is displayed as \"This is parking covered by carports\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=garage_boxes with a fixed text, namely 'This a parking consisting of garage boxes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "garage_boxes" + "value": "garage_boxes", + "description": "parking=garage_boxes is displayed as \"This a parking consisting of garage boxes\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=layby with a fixed text, namely 'This is a parking on a layby' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "layby" + "value": "layby", + "description": "parking=layby is displayed as \"This is a parking on a layby\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "parking", - "description": "Layer 'Parking' shows parking=sheds with a fixed text, namely 'This is a parking consisting of sheds' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "sheds" + "value": "sheds", + "description": "parking=sheds is displayed as \"This is a parking consisting of sheds\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#parking_type", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows and asks freeform values for key 'capacity:disabled' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `capacity:disabled` are shown with \"There are {capacity:disabled} disabled parking spots\" and can be updated. The question is \"How many disabled parking spots are there at this parking?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=yes with a fixed text, namely 'There are disabled parking spots, but it is not known how many' (in the mapcomplete.org theme 'Bus routes')", - "value": "yes" + "value": "yes", + "description": "capacity:disabled=yes is displayed as \"There are disabled parking spots, but it is not known how many\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=no with a fixed text, namely 'There are no disabled parking spots' (in the mapcomplete.org theme 'Bus routes')", - "value": "no" + "value": "no", + "description": "capacity:disabled=no is displayed as \"There are no disabled parking spots\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity:disabled", - "description": "Layer 'Parking' shows capacity:disabled=0 with a fixed text, namely 'There are no disabled parking spots' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "0" + "value": "0", + "description": "capacity:disabled=0 is displayed as \"There are no disabled parking spots\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity_disabled", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "capacity", - "description": "Layer 'Parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `capacity` are shown with \"There are {capacity} parking spots\" and can be updated. The question is \"How many parking spots are there at this parking?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#capacity", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Parking' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Bus routes')" + "description": "Values of `maxstay` are shown with \"One can stay at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum amount of time one is allowed to stay here?\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#maxstay", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "maxstay", - "description": "Layer 'Parking' shows maxstay=unlimited with a fixed text, namely 'There is no limit to the amount of time one can stay here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bus routes')", - "value": "unlimited" + "value": "unlimited", + "description": "maxstay=unlimited is displayed as \"There is no limit to the amount of time one can stay here\" by layer Parking", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parking.md#maxstay", + "icon_url": "./assets/layers/parking/parking.svg" }, { "key": "amenity", - "description": "The MapComplete theme Bus routes has a layer Shelter showing features with this tag", - "value": "shelter" + "value": "shelter", + "description": "Features with this tag are displayed by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pt_shelter.md", + "icon_url": "./assets/layers/shelter/shelter.svg" }, { "key": "shelter_type", - "description": "The MapComplete theme Bus routes has a layer Shelter showing features with this tag", - "value": "public_transport" - }, - { - "key": "id", - "description": "Layer 'Shelter' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bus routes') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "public_transport", + "description": "Features with this tag are displayed by layer Shelter", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pt_shelter.md", + "icon_url": "./assets/layers/shelter/shelter.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_trees.json b/Docs/TagInfo/mapcomplete_trees.json index ba9a2100b9..dcb45a22ed 100644 --- a/Docs/TagInfo/mapcomplete_trees.json +++ b/Docs/TagInfo/mapcomplete_trees.json @@ -7,180 +7,251 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/trees/logo.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "natural", - "description": "The MapComplete theme Trees has a layer Tree showing features with this tag", - "value": "tree" + "value": "tree", + "description": "Features with this tag are displayed by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "id", - "description": "Layer 'Tree' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Trees') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "panoramax", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "mapillary", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "wikidata", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "wikipedia", - "description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "species:wikidata", - "description": "Layer 'Tree' shows and asks freeform values for key 'species:wikidata' (in the mapcomplete.org theme 'Trees')" + "description": "Values of `species:wikidata` are shown with \"{wikipedia(species:wikidata):max-height: 25rem}\" and can be updated. The question is \"What species is this tree?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_species_wikidata", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "circumference", - "description": "Layer 'Tree' shows and asks freeform values for key 'circumference' (in the mapcomplete.org theme 'Trees')" + "description": "Values of `circumference` are shown with \"The tree trunk has a circumference of {circumference} meter\" and can be updated. The question is \"What is the circumference of the tree trunk?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#circumference", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "height", - "description": "Layer 'Tree' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Trees')" + "description": "Values of `height` are shown with \"This tree is {height} meter high\" and can be updated. The question is \"What is the height of this tree?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#height", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=landmark with a fixed text, namely 'The tree is remarkable due to its size or prominent location. It is useful for navigation.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')", - "value": "landmark" + "value": "landmark", + "description": "denotation=landmark is displayed as \"The tree is remarkable due to its size or prominent location. It is useful for navigation.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=natural_monument with a fixed text, namely 'The tree is a natural monument, e.g. because it is especially old, or of a valuable species.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')", - "value": "natural_monument" + "value": "natural_monument", + "description": "denotation=natural_monument is displayed as \"The tree is a natural monument, e.g. because it is especially old, or of a valuable species.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=agricultural with a fixed text, namely 'The tree is used for agricultural purposes, e.g. in an orchard.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')", - "value": "agricultural" + "value": "agricultural", + "description": "denotation=agricultural is displayed as \"The tree is used for agricultural purposes, e.g. in an orchard.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=park with a fixed text, namely 'The tree is in a park or similar (cemetery, school grounds, …).' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')", - "value": "park" + "value": "park", + "description": "denotation=park is displayed as \"The tree is in a park or similar (cemetery, school grounds, …).\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=garden with a fixed text, namely 'The tree is in a residential garden.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')", - "value": "garden" + "value": "garden", + "description": "denotation=garden is displayed as \"The tree is in a residential garden.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=avenue with a fixed text, namely 'This is a tree along an avenue.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')", - "value": "avenue" + "value": "avenue", + "description": "denotation=avenue is displayed as \"This is a tree along an avenue.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=urban with a fixed text, namely 'The tree is in an urban area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')", - "value": "urban" + "value": "urban", + "description": "denotation=urban is displayed as \"The tree is in an urban area.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "denotation", - "description": "Layer 'Tree' shows denotation=none with a fixed text, namely 'The tree is outside of an urban area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')", - "value": "none" + "value": "none", + "description": "denotation=none is displayed as \"The tree is outside of an urban area.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "leaf_type", - "description": "Layer 'Tree' shows leaf_type=broadleaved with a fixed text, namely 'Broadleaved' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if species:wikidata=)", - "value": "broadleaved" + "value": "broadleaved", + "description": "leaf_type=broadleaved is displayed as \"Broadleaved\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type", + "icon_url": "./assets/layers/tree_node/broadleaved.svg" }, { "key": "leaf_type", - "description": "Layer 'Tree' shows leaf_type=needleleaved with a fixed text, namely 'Needleleaved' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if species:wikidata=)", - "value": "needleleaved" + "value": "needleleaved", + "description": "leaf_type=needleleaved is displayed as \"Needleleaved\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type", + "icon_url": "./assets/layers/tree_node/needleleaved.svg" }, { "key": "leaf_type", - "description": "Layer 'Tree' shows leaf_type=leafless with a fixed text, namely 'Permanently leafless' (in the mapcomplete.org theme 'Trees') (This is only shown if species:wikidata=)", - "value": "leafless" + "value": "leafless", + "description": "leaf_type=leafless is displayed as \"Permanently leafless\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type", + "icon_url": "./assets/layers/tree_node/leafless.svg" }, { "key": "leaf_cycle", - "description": "Layer 'Tree' shows leaf_cycle=deciduous with a fixed text, namely 'Deciduous: the tree loses its leaves for some time of the year.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if leaf_type!~^(^leafless$)$ & species:wikidata=)", - "value": "deciduous" + "value": "deciduous", + "description": "leaf_cycle=deciduous is displayed as \"Deciduous: the tree loses its leaves for some time of the year.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_decidouous", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "leaf_cycle", - "description": "Layer 'Tree' shows leaf_cycle=evergreen with a fixed text, namely 'Evergreen.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if leaf_type!~^(^leafless$)$ & species:wikidata=)", - "value": "evergreen" + "value": "evergreen", + "description": "leaf_cycle=evergreen is displayed as \"Evergreen.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_decidouous", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "name", - "description": "Layer 'Tree' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)" + "description": "Values of `name` are shown with \"Name: {name}\" and can be updated. The question is \"Does the tree have a name?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "name", - "description": "Layer 'Tree' shows name= & noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') Picking this answer will delete the key name. (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)", - "value": "" + "description": "name= & noname=yes is displayed as \"The tree does not have a name.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "noname", - "description": "Layer 'Tree' shows name= & noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)", - "value": "yes" + "value": "yes", + "description": "name= & noname=yes is displayed as \"The tree does not have a name.\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=4 & heritage:operator=OnroerendErfgoed with a fixed text, namely 'Registered as heritage by Onroerend Erfgoed Flanders' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "4" + "value": "4", + "description": "heritage=4 & heritage:operator=OnroerendErfgoed is displayed as \"Registered as heritage by Onroerend Erfgoed Flanders\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=4 & heritage:operator=OnroerendErfgoed with a fixed text, namely 'Registered as heritage by Onroerend Erfgoed Flanders' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "OnroerendErfgoed" + "value": "OnroerendErfgoed", + "description": "heritage=4 & heritage:operator=OnroerendErfgoed is displayed as \"Registered as heritage by Onroerend Erfgoed Flanders\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=4 & heritage:operator=aatl with a fixed text, namely 'Registered as heritage by Direction du Patrimoine culturel Brussels' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "4" + "value": "4", + "description": "heritage=4 & heritage:operator=aatl is displayed as \"Registered as heritage by Direction du Patrimoine culturel Brussels\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=4 & heritage:operator=aatl with a fixed text, namely 'Registered as heritage by Direction du Patrimoine culturel Brussels' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "aatl" + "value": "aatl", + "description": "heritage=4 & heritage:operator=aatl is displayed as \"Registered as heritage by Direction du Patrimoine culturel Brussels\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=yes & heritage:operator= with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "yes" + "value": "yes", + "description": "heritage=yes & heritage:operator= is displayed as \"Registered as heritage by a different organisation\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=yes & heritage:operator= with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') Picking this answer will delete the key heritage:operator. (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "" + "description": "heritage=yes & heritage:operator= is displayed as \"Registered as heritage by a different organisation\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=no & heritage:operator= with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "no" + "value": "no", + "description": "heritage=no & heritage:operator= is displayed as \"Not registered as heritage\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=no & heritage:operator= with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') Picking this answer will delete the key heritage:operator. (This is only shown if denotation=landmark | denotation=natural_monument)", - "value": "" + "description": "heritage=no & heritage:operator= is displayed as \"Not registered as heritage\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage~.+ with a fixed text, namely 'Registered as heritage by a different organisation' (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)" + "description": "heritage~.+ is displayed as \"Registered as heritage by a different organisation\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "ref:OnroerendErfgoed", - "description": "Layer 'Tree' shows and asks freeform values for key 'ref:OnroerendErfgoed' (in the mapcomplete.org theme 'Trees') (This is only shown if heritage=4 & heritage:operator=OnroerendErfgoed)" + "description": "Values of `ref:OnroerendErfgoed` are shown with \"\"\"/ Onroerend Erfgoed ID: {ref:OnroerendErfgoed}\" and can be updated. The question is \"What is the ID issued by Onroerend Erfgoed Flanders?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_ref_OnroerendErfgoed", + "icon_url": "./assets/layers/tree_node/unknown.svg" }, { "key": "wikidata", - "description": "Layer 'Tree' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument | wikidata~.+)" + "description": "Values of `wikidata` are shown with \"\"\"/ Wikidata: {wikidata}\" and can be updated. The question is \"What is the Wikidata ID for this tree?\" by layer Tree", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_wikidata", + "icon_url": "./assets/layers/tree_node/unknown.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_vending_machine.json b/Docs/TagInfo/mapcomplete_vending_machine.json index e8d83642a5..94b0d838f3 100644 --- a/Docs/TagInfo/mapcomplete_vending_machine.json +++ b/Docs/TagInfo/mapcomplete_vending_machine.json @@ -7,479 +7,672 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/vending_machine/vending_machine.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Vending Machines has a layer Vending Machines showing features with this tag", - "value": "vending_machine" + "value": "vending_machine", + "description": "Features with this tag are displayed by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "id", - "description": "Layer 'Vending Machines' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "panoramax", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "mapillary", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "wikidata", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "wikipedia", - "description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "level", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)" + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "location", - "description": "Layer 'Vending Machines' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "level", - "description": "Layer 'Vending Machines' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)", - "value": "0" + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "level", - "description": "Layer 'Vending Machines' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Vending Machines') Picking this answer will delete the key level. (This is only shown if repeat_on=)", - "value": "" + "description": "level= is displayed as \"Located on the ground floor\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "level", - "description": "Layer 'Vending Machines' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)", - "value": "1" + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "level", - "description": "Layer 'Vending Machines' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)", - "value": "-1" + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'vending' (in the mapcomplete.org theme 'Vending Machines')" + "description": "Values of `vending` are shown with \"This vending machine sells {vending}\" and can be updated. The question is \"What does this vending machine sell?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=drinks with a fixed text, namely 'Drinks are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "drinks" + "value": "drinks", + "description": "vending=drinks is displayed as \"Drinks are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/id_presets/temaki-bottles.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=sweets with a fixed text, namely 'Sweets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "sweets" + "value": "sweets", + "description": "vending=sweets is displayed as \"Sweets are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/id_presets/maki-confectionery.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=food with a fixed text, namely 'Food is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "food" + "value": "food", + "description": "vending=food is displayed as \"Food is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/utensils.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=cigarettes with a fixed text, namely 'Cigarettes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "cigarettes" + "value": "cigarettes", + "description": "vending=cigarettes is displayed as \"Cigarettes are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/smoking.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=condoms with a fixed text, namely 'Condoms are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "condoms" + "value": "condoms", + "description": "vending=condoms is displayed as \"Condoms are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/condom.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=coffee with a fixed text, namely 'Coffee is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "coffee" + "value": "coffee", + "description": "vending=coffee is displayed as \"Coffee is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/mug-saucer.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=water with a fixed text, namely 'Drinking water is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "water" + "value": "water", + "description": "vending=water is displayed as \"Drinking water is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=newspapers with a fixed text, namely 'Newspapers are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "newspapers" + "value": "newspapers", + "description": "vending=newspapers is displayed as \"Newspapers are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/id_presets/fas-newspaper.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_tube with a fixed text, namely 'Bicycle inner tubes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "bicycle_tube" + "value": "bicycle_tube", + "description": "vending=bicycle_tube is displayed as \"Bicycle inner tubes are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=milk with a fixed text, namely 'Milk is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "milk" + "value": "milk", + "description": "vending=milk is displayed as \"Milk is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/cow.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bread with a fixed text, namely 'Bread is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "bread" + "value": "bread", + "description": "vending=bread is displayed as \"Bread is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/id_presets/maki-bakery.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=eggs with a fixed text, namely 'Eggs are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "eggs" + "value": "eggs", + "description": "vending=eggs is displayed as \"Eggs are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/egg.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=ice_cream with a fixed text, namely 'Ice cream is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "ice_cream" + "value": "ice_cream", + "description": "vending=ice_cream is displayed as \"Ice cream is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/ice_cream/ice_cream.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=cheese with a fixed text, namely 'Cheese is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "cheese" + "value": "cheese", + "description": "vending=cheese is displayed as \"Cheese is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/id_presets/fas-cheese.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=honey with a fixed text, namely 'Honey is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "honey" + "value": "honey", + "description": "vending=honey is displayed as \"Honey is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/honey.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=potatoes with a fixed text, namely 'Potatoes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "potatoes" + "value": "potatoes", + "description": "vending=potatoes is displayed as \"Potatoes are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/potato.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=meat with a fixed text, namely 'Meat is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "meat" + "value": "meat", + "description": "vending=meat is displayed as \"Meat is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/id_presets/temaki-meat.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=fruit with a fixed text, namely 'Fruit is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "fruit" + "value": "fruit", + "description": "vending=fruit is displayed as \"Fruit is sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/fruits.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=strawberries with a fixed text, namely 'Strawberries are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "strawberries" + "value": "strawberries", + "description": "vending=strawberries is displayed as \"Strawberries are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/strawberry.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=flowers with a fixed text, namely 'Flowers are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "flowers" + "value": "flowers", + "description": "vending=flowers is displayed as \"Flowers are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/id_presets/maki-florist.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=parking_tickets with a fixed text, namely 'Parking tickets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "parking_tickets" + "value": "parking_tickets", + "description": "vending=parking_tickets is displayed as \"Parking tickets are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/parking_ticket_machine/parking_tickets.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=elongated_coin with a fixed text, namely 'Pressed pennies are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "elongated_coin" + "value": "elongated_coin", + "description": "vending=elongated_coin is displayed as \"Pressed pennies are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/themes/elongated_coin/penny.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=public_transport_tickets with a fixed text, namely 'Public transport tickets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "public_transport_tickets" + "value": "public_transport_tickets", + "description": "vending=public_transport_tickets is displayed as \"Public transport tickets are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/themes/stations/public_transport_tickets.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_light with a fixed text, namely 'Bicycle lights are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "bicycle_light" + "value": "bicycle_light", + "description": "vending=bicycle_light is displayed as \"Bicycle lights are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=gloves with a fixed text, namely 'Gloves are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "gloves" + "value": "gloves", + "description": "vending=gloves is displayed as \"Gloves are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_repair_kit with a fixed text, namely 'Bicycle repair kits are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "bicycle_repair_kit" + "value": "bicycle_repair_kit", + "description": "vending=bicycle_repair_kit is displayed as \"Bicycle repair kits are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_pump with a fixed text, namely 'Bicycle pumps are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "bicycle_pump" + "value": "bicycle_pump", + "description": "vending=bicycle_pump is displayed as \"Bicycle pumps are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "vending", - "description": "Layer 'Vending Machines' shows vending=bicycle_lock with a fixed text, namely 'Bicycle locks are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "bicycle_lock" + "value": "bicycle_lock", + "description": "vending=bicycle_lock is displayed as \"Bicycle locks are sold\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "brand", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_tube.*)$)" + "description": "Values of `brand` are shown with \"{brand} tubes are sold here\" and can be updated. The question is \"Which brand of tubes are sold here?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#bicycle_tube_vending_machine_brand", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "brand", - "description": "Layer 'Vending Machines' shows brand=Continental with a fixed text, namely 'Continental tubes are sold here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_tube.*)$)", - "value": "Continental" + "value": "Continental", + "description": "brand=Continental is displayed as \"Continental tubes are sold here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#bicycle_tube_vending_machine_brand", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "brand", - "description": "Layer 'Vending Machines' shows brand=Schwalbe with a fixed text, namely 'Schwalbe tubes are sold here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_tube.*)$)", - "value": "Schwalbe" + "value": "Schwalbe", + "description": "brand=Schwalbe is displayed as \"Schwalbe tubes are sold here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#bicycle_tube_vending_machine_brand", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "opening_hours", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Vending Machines')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#opening_hours_24_7", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "opening_hours", - "description": "Layer 'Vending Machines' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Vending Machines' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Vending Machines')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#opening_hours_24_7", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "payment:cash", - "description": "Layer 'Vending Machines' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Vending Machines')", - "value": "yes" + "value": "yes", + "description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/cash.svg" }, { "key": "payment:cards", - "description": "Layer 'Vending Machines' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Vending Machines')", - "value": "yes" + "value": "yes", + "description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:qr_code", - "description": "Layer 'Vending Machines' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "yes" + "value": "yes", + "description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/qrcode.svg" }, { "key": "payment:coins", - "description": "Layer 'Vending Machines' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "yes" + "value": "yes", + "description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/coins.svg" }, { "key": "payment:notes", - "description": "Layer 'Vending Machines' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "yes" + "value": "yes", + "description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/notes.svg" }, { "key": "payment:debit_cards", - "description": "Layer 'Vending Machines' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "yes" + "value": "yes", + "description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:credit_cards", - "description": "Layer 'Vending Machines' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "yes" + "value": "yes", + "description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split", + "icon_url": "./assets/layers/questions/payment_card.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.01 EUR with a fixed text, namely '1 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.01 EUR" + "value": "0.01 EUR", + "description": "payment:coins:denominations=0.01 EUR is displayed as \"1 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/1cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.02 EUR with a fixed text, namely '2 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.02 EUR" + "value": "0.02 EUR", + "description": "payment:coins:denominations=0.02 EUR is displayed as \"2 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/2cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.05 EUR with a fixed text, namely '5 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 EUR" + "value": "0.05 EUR", + "description": "payment:coins:denominations=0.05 EUR is displayed as \"5 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/5cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.10 EUR with a fixed text, namely '10 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 EUR" + "value": "0.10 EUR", + "description": "payment:coins:denominations=0.10 EUR is displayed as \"10 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/10cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.20 EUR with a fixed text, namely '20 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 EUR" + "value": "0.20 EUR", + "description": "payment:coins:denominations=0.20 EUR is displayed as \"20 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/20cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.50 EUR with a fixed text, namely '50 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 EUR" + "value": "0.50 EUR", + "description": "payment:coins:denominations=0.50 EUR is displayed as \"50 cent coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/50cent.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=1 EUR with a fixed text, namely '1 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 EUR" + "value": "1 EUR", + "description": "payment:coins:denominations=1 EUR is displayed as \"1 euro coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/1euro.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=2 EUR with a fixed text, namely '2 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 EUR" + "value": "2 EUR", + "description": "payment:coins:denominations=2 EUR is displayed as \"2 euro coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/eur/2euro.svg" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.05 CHF with a fixed text, namely '5 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.05 CHF" + "value": "0.05 CHF", + "description": "payment:coins:denominations=0.05 CHF is displayed as \"5 centimes coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/5rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.10 CHF with a fixed text, namely '10 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.10 CHF" + "value": "0.10 CHF", + "description": "payment:coins:denominations=0.10 CHF is displayed as \"10 centimes coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/10rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.20 CHF with a fixed text, namely '20 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.20 CHF" + "value": "0.20 CHF", + "description": "payment:coins:denominations=0.20 CHF is displayed as \"20 centimes coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/20rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=0.50 CHF with a fixed text, namely '½ franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "0.50 CHF" + "value": "0.50 CHF", + "description": "payment:coins:denominations=0.50 CHF is displayed as \"½ franc coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/50rp-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=1 CHF with a fixed text, namely '1 franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1 CHF" + "value": "1 CHF", + "description": "payment:coins:denominations=1 CHF is displayed as \"1 franc coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/1fr-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=2 CHF with a fixed text, namely '2 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "2 CHF" + "value": "2 CHF", + "description": "payment:coins:denominations=2 CHF is displayed as \"2 francs coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/2fr-2019-800px.png" }, { "key": "payment:coins:denominations", - "description": "Layer 'Vending Machines' shows payment:coins:denominations=5 CHF with a fixed text, namely '5 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 CHF" + "value": "5 CHF", + "description": "payment:coins:denominations=5 CHF is displayed as \"5 francs coins are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins", + "icon_url": "./assets/layers/questions/denominations/chf/5fr-2019-800px.png" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=5 EUR with a fixed text, namely '5 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "5 EUR" + "value": "5 EUR", + "description": "payment:notes:denominations=5 EUR is displayed as \"5 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/5euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=10 EUR with a fixed text, namely '10 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "10 EUR" + "value": "10 EUR", + "description": "payment:notes:denominations=10 EUR is displayed as \"10 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/10euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=20 EUR with a fixed text, namely '20 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "20 EUR" + "value": "20 EUR", + "description": "payment:notes:denominations=20 EUR is displayed as \"20 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/20euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=50 EUR with a fixed text, namely '50 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "50 EUR" + "value": "50 EUR", + "description": "payment:notes:denominations=50 EUR is displayed as \"50 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/50euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=100 EUR with a fixed text, namely '100 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "100 EUR" + "value": "100 EUR", + "description": "payment:notes:denominations=100 EUR is displayed as \"100 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/100euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=200 EUR with a fixed text, namely '200 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "200 EUR" + "value": "200 EUR", + "description": "payment:notes:denominations=200 EUR is displayed as \"200 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/200euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=500 EUR with a fixed text, namely '500 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "500 EUR" + "value": "500 EUR", + "description": "payment:notes:denominations=500 EUR is displayed as \"500 euro notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/eur/500euro.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=10 CHF with a fixed text, namely '10 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "10 CHF" + "value": "10 CHF", + "description": "payment:notes:denominations=10 CHF is displayed as \"10 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/10chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=20 CHF with a fixed text, namely '20 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "20 CHF" + "value": "20 CHF", + "description": "payment:notes:denominations=20 CHF is displayed as \"20 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/20chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=50 CHF with a fixed text, namely '50 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "50 CHF" + "value": "50 CHF", + "description": "payment:notes:denominations=50 CHF is displayed as \"50 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/50chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=100 CHF with a fixed text, namely '100 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "100 CHF" + "value": "100 CHF", + "description": "payment:notes:denominations=100 CHF is displayed as \"100 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/100chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=200 CHF with a fixed text, namely '200 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "200 CHF" + "value": "200 CHF", + "description": "payment:notes:denominations=200 CHF is displayed as \"200 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/200chf.svg" }, { "key": "payment:notes:denominations", - "description": "Layer 'Vending Machines' shows payment:notes:denominations=1000 CHF with a fixed text, namely '1000 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))", - "value": "1000 CHF" + "value": "1000 CHF", + "description": "payment:notes:denominations=1000 CHF is displayed as \"1000 francs notes are accepted\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes", + "icon_url": "./assets/layers/questions/denominations/chf/1000chf.svg" }, { "key": "operator", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Vending Machines')" + "description": "Values of `operator` are shown with \"This vending machine is operated by {operator}\" and can be updated. The question is \"Who operates this vending machine?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operator", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "indoor", - "description": "Layer 'Vending Machines' shows indoor= with a fixed text, namely 'This vending machine is outdoors' (in the mapcomplete.org theme 'Vending Machines') Picking this answer will delete the key indoor.", - "value": "" + "description": "indoor= is displayed as \"This vending machine is outdoors\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#indoor", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "indoor", - "description": "Layer 'Vending Machines' shows indoor=yes with a fixed text, namely 'This vending machine is indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "yes" + "value": "yes", + "description": "indoor=yes is displayed as \"This vending machine is indoors\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#indoor", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "indoor", - "description": "Layer 'Vending Machines' shows indoor=no with a fixed text, namely 'This vending machine is outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "no" + "value": "no", + "description": "indoor=no is displayed as \"This vending machine is outdoors\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#indoor", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "phone", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Vending Machines')" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of the operator of this vending machine?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Vending Machines' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Vending Machines')" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "website", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Vending Machines')" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Vending Machines' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Vending Machines')" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "charge", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_tube.*)$)" + "description": "Values of `charge` are shown with \"a bicycle tube costs {charge}\" and can be updated. The question is \"How much does a a bicycle tube cost?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#charge_bicycle_tube", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "charge", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_light.*)$)" + "description": "Values of `charge` are shown with \"bicycle light costs {charge}\" and can be updated. The question is \"How much does a bicycle light cost?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#charge_bicycle_light", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "charge", - "description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*condom.*)$)" + "description": "Values of `charge` are shown with \"a condom costs {charge}\" and can be updated. The question is \"How much does a a condom cost?\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#charge_condom", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "operational_status", - "description": "Layer 'Vending Machines' shows operational_status= with a fixed text, namely 'This vending machine works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') Picking this answer will delete the key operational_status.", - "value": "" + "description": "operational_status= is displayed as \"This vending machine works\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operational_status", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "operational_status", - "description": "Layer 'Vending Machines' shows operational_status=broken with a fixed text, namely 'This vending machine is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "broken" + "value": "broken", + "description": "operational_status=broken is displayed as \"This vending machine is broken\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operational_status", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "operational_status", - "description": "Layer 'Vending Machines' shows operational_status=closed with a fixed text, namely 'This vending machine is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')", - "value": "closed" + "value": "closed", + "description": "operational_status=closed is displayed as \"This vending machine is closed\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operational_status", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" }, { "key": "operational_status", - "description": "Layer 'Vending Machines' shows operational_status~.+ with a fixed text, namely 'The operational status is {operational_status}' (in the mapcomplete.org theme 'Vending Machines')" + "description": "operational_status~.+ is displayed as \"The operational status is {operational_status}\" by layer Vending Machines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operational_status", + "icon_url": "./assets/layers/vending_machine/vending_machine.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_waste.json b/Docs/TagInfo/mapcomplete_waste.json index 6fe987906c..00a1502d02 100644 --- a/Docs/TagInfo/mapcomplete_waste.json +++ b/Docs/TagInfo/mapcomplete_waste.json @@ -7,462 +7,557 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/layers/recycling/recycling-14.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Waste has a layer Waste Basket showing features with this tag", - "value": "waste_basket" + "value": "waste_basket", + "description": "Features with this tag are displayed by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "id", - "description": "Layer 'Waste Basket' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Waste') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Waste Basket, Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "panoramax", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "mapillary", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "wikidata", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "wikipedia", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste= with a fixed text, namely 'A waste basket for general waste' (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key waste.", - "value": "" + "description": "waste= is displayed as \"A waste basket for general waste\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=trash with a fixed text, namely 'A waste basket for general waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "trash" + "value": "trash", + "description": "waste=trash is displayed as \"A waste basket for general waste\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=dog_excrement with a fixed text, namely 'A waste basket for dog excrements' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "dog_excrement" + "value": "dog_excrement", + "description": "waste=dog_excrement is displayed as \"A waste basket for dog excrements\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=cigarettes with a fixed text, namely 'A waste basket for cigarettes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "cigarettes" + "value": "cigarettes", + "description": "waste=cigarettes is displayed as \"A waste basket for cigarettes\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=drugs with a fixed text, namely 'A waste basket for drugs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "drugs" + "value": "drugs", + "description": "waste=drugs is displayed as \"A waste basket for drugs\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=sharps with a fixed text, namely 'A waste basket for needles and other sharp objects' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "sharps" + "value": "sharps", + "description": "waste=sharps is displayed as \"A waste basket for needles and other sharp objects\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=plastic with a fixed text, namely 'A waste basket for plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "plastic" + "value": "plastic", + "description": "waste=plastic is displayed as \"A waste basket for plastic\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=pmd with a fixed text, namely 'A waste basket for plastic packaging, metal packaging and drink cartons (PMD)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "pmd" + "value": "pmd", + "description": "waste=pmd is displayed as \"A waste basket for plastic packaging, metal packaging and drink cartons (PMD)\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=paper with a fixed text, namely 'A waste basket for paper' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "paper" + "value": "paper", + "description": "waste=paper is displayed as \"A waste basket for paper\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "excrement_bags" + "value": "excrement_bags", + "description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "not:vending", - "description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key not:vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "not:vending", - "description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "excrement_bags" + "value": "excrement_bags", + "description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "amenity", - "description": "The MapComplete theme Waste has a layer Recycling showing features with this tag", - "value": "recycling" - }, - { - "key": "id", - "description": "Layer 'Recycling' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Waste') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "recycling", + "description": "Features with this tag are displayed by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "recycling_type", - "description": "Layer 'Recycling' shows recycling_type=container with a fixed text, namely 'This is a recycling container' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "container" + "value": "container", + "description": "recycling_type=container is displayed as \"This is a recycling container\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "recycling_type", - "description": "Layer 'Recycling' shows recycling_type=centre with a fixed text, namely 'This is a recycling centre' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "centre" + "value": "centre", + "description": "recycling_type=centre is displayed as \"This is a recycling centre\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "amenity", - "description": "Layer 'Recycling' shows amenity=waste_disposal with a fixed text, namely 'Waste disposal container for residual waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "waste_disposal" + "value": "waste_disposal", + "description": "amenity=waste_disposal is displayed as \"Waste disposal container for residual waste\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "recycling_type", - "description": "Layer 'Recycling' shows recycling_type=pickup_point with a fixed text, namely 'This is a pickup point. The waste material is placed here without placing it in a dedicated container.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "pickup_point" + "value": "pickup_point", + "description": "recycling_type=pickup_point is displayed as \"This is a pickup point. The waste material is placed here without placing it in a dedicated container.\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "recycling_type", - "description": "Layer 'Recycling' shows recycling_type=dump with a fixed text, namely 'This is a dump where the waste material is stacked.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "dump" + "value": "dump", + "description": "recycling_type=dump is displayed as \"This is a dump where the waste material is stacked.\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "name", - "description": "Layer 'Recycling' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)" + "description": "Values of `name` are shown with \"This recycling centre is named {name}\" and can be updated. The question is \"What is the name of this recycling centre?\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_centre_name", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "noname", - "description": "Layer 'Recycling' shows noname=yes with a fixed text, namely 'This recycling centre doesn't have a specific name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)", - "value": "yes" + "value": "yes", + "description": "noname=yes is displayed as \"This recycling centre doesn't have a specific name\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_centre_name", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "location", - "description": "Layer 'Recycling' shows location=underground with a fixed text, namely 'This is an underground container' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=container)", - "value": "underground" + "value": "underground", + "description": "location=underground is displayed as \"This is an underground container\" by layers Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#container_location", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "location", - "description": "Layer 'Recycling' shows location=indoor with a fixed text, namely 'This container is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=container)", - "value": "indoor" + "value": "indoor", + "description": "location=indoor is displayed as \"This container is located indoors\" by layers Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#container_location", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "location", - "description": "Layer 'Recycling' shows location= with a fixed text, namely 'This container is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key location. (This is only shown if recycling_type=container)", - "value": "" + "description": "location= is displayed as \"This container is located outdoors\" by layers Recycling, Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#container_location", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "recycling:batteries", - "description": "Layer 'Recycling' shows recycling:batteries=yes with a fixed text, namely 'Batteries can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:batteries=yes is displayed as \"Batteries can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/batteries.svg" }, { "key": "recycling:beverage_cartons", - "description": "Layer 'Recycling' shows recycling:beverage_cartons=yes with a fixed text, namely 'Beverage cartons can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:beverage_cartons=yes is displayed as \"Beverage cartons can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/beverage_cartons.svg" }, { "key": "recycling:cans", - "description": "Layer 'Recycling' shows recycling:cans=yes with a fixed text, namely 'Cans can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:cans=yes is displayed as \"Cans can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/cans.svg" }, { "key": "recycling:clothes", - "description": "Layer 'Recycling' shows recycling:clothes=yes with a fixed text, namely 'Clothes can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:clothes=yes is displayed as \"Clothes can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/clothes.svg" }, { "key": "recycling:cooking_oil", - "description": "Layer 'Recycling' shows recycling:cooking_oil=yes with a fixed text, namely 'Cooking oil can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:cooking_oil=yes is displayed as \"Cooking oil can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/cooking_oil.svg" }, { "key": "recycling:engine_oil", - "description": "Layer 'Recycling' shows recycling:engine_oil=yes with a fixed text, namely 'Engine oil can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:engine_oil=yes is displayed as \"Engine oil can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/engine_oil.svg" }, { "key": "recycling:fluorescent_tubes", - "description": "Layer 'Recycling' shows recycling:fluorescent_tubes=yes with a fixed text, namely 'Fluorescent tubes can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:fluorescent_tubes=yes is displayed as \"Fluorescent tubes can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/fluorescent_tubes.svg" }, { "key": "recycling:green_waste", - "description": "Layer 'Recycling' shows recycling:green_waste=yes with a fixed text, namely 'Green waste can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:green_waste=yes is displayed as \"Green waste can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/garden_waste.svg" }, { "key": "recycling:organic", - "description": "Layer 'Recycling' shows recycling:organic=yes with a fixed text, namely 'Organic waste can be recycled here' (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:organic=yes is displayed as \"Organic waste can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/garden_waste.svg" }, { "key": "recycling:glass_bottles", - "description": "Layer 'Recycling' shows recycling:glass_bottles=yes with a fixed text, namely 'Glass bottles can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:glass_bottles=yes is displayed as \"Glass bottles can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/glass_bottles.svg" }, { "key": "recycling:glass", - "description": "Layer 'Recycling' shows recycling:glass=yes with a fixed text, namely 'Glass can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:glass=yes is displayed as \"Glass can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/glass.svg" }, { "key": "recycling:light_bulbs", - "description": "Layer 'Recycling' shows recycling:light_bulbs=yes with a fixed text, namely 'Light bulbs can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:light_bulbs=yes is displayed as \"Light bulbs can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/light_bulbs.svg" }, { "key": "recycling:newspaper", - "description": "Layer 'Recycling' shows recycling:newspaper=yes with a fixed text, namely 'Newspapers can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:newspaper=yes is displayed as \"Newspapers can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/newspaper.svg" }, { "key": "recycling:paper", - "description": "Layer 'Recycling' shows recycling:paper=yes with a fixed text, namely 'Paper can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:paper=yes is displayed as \"Paper can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/paper.svg" }, { "key": "recycling:plastic_bottles", - "description": "Layer 'Recycling' shows recycling:plastic_bottles=yes with a fixed text, namely 'Plastic bottles can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:plastic_bottles=yes is displayed as \"Plastic bottles can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/plastic_bottles.svg" }, { "key": "recycling:plastic_packaging", - "description": "Layer 'Recycling' shows recycling:plastic_packaging=yes with a fixed text, namely 'Plastic packaging can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:plastic_packaging=yes is displayed as \"Plastic packaging can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/plastic_packaging.svg" }, { "key": "recycling:plastic", - "description": "Layer 'Recycling' shows recycling:plastic=yes with a fixed text, namely 'Plastic can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:plastic=yes is displayed as \"Plastic can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/plastic.svg" }, { "key": "recycling:pmd", - "description": "Layer 'Recycling' shows recycling:pmd=yes with a fixed text, namely 'Plastic packaging, metal packaging and drink cartons (PMD) can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:pmd=yes is displayed as \"Plastic packaging, metal packaging and drink cartons (PMD) can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/pmd.svg" }, { "key": "recycling:printer_cartridges", - "description": "Layer 'Recycling' shows recycling:printer_cartridges=yes with a fixed text, namely 'Printer cartridges can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:printer_cartridges=yes is displayed as \"Printer cartridges can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/printer_cartridges.svg" }, { "key": "recycling:scrap_metal", - "description": "Layer 'Recycling' shows recycling:scrap_metal=yes with a fixed text, namely 'Scrap metal can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:scrap_metal=yes is displayed as \"Scrap metal can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/scrap_metal.svg" }, { "key": "recycling:shoes", - "description": "Layer 'Recycling' shows recycling:shoes=yes with a fixed text, namely 'Shoes can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:shoes=yes is displayed as \"Shoes can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/shoes.svg" }, { "key": "recycling:small_appliances", - "description": "Layer 'Recycling' shows recycling:small_appliances=yes with a fixed text, namely 'Small electrical appliances can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:small_appliances=yes is displayed as \"Small electrical appliances can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/small_electrical_appliances.svg" }, { "key": "recycling:small_electrical_appliances", - "description": "Layer 'Recycling' shows recycling:small_electrical_appliances=yes with a fixed text, namely 'Small electrical appliances can be recycled here' (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:small_electrical_appliances=yes is displayed as \"Small electrical appliances can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/small_electrical_appliances.svg" }, { "key": "recycling:needles", - "description": "Layer 'Recycling' shows recycling:needles=yes with a fixed text, namely 'Needles can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:needles=yes is displayed as \"Needles can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/needles.svg" }, { "key": "recycling:waste", - "description": "Layer 'Recycling' shows recycling:waste=yes with a fixed text, namely 'Residual waste can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:waste=yes is displayed as \"Residual waste can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/waste_disposal/waste_disposal.svg" }, { "key": "recycling:bicycles", - "description": "Layer 'Recycling' shows recycling:bicycles=yes with a fixed text, namely 'Bicycles can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "recycling:bicycles=yes is displayed as \"Bicycles can be recycled here\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts", + "icon_url": "./assets/layers/recycling/bicycles.svg" }, { "key": "operator", - "description": "Layer 'Recycling' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Waste')" + "description": "Values of `operator` are shown with \"This recycling facility is operated by {operator}\" and can be updated. The question is \"What company operates this recycling facility?\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#operator", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "website", - "description": "Layer 'Recycling' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)" + "description": "Values of `website` are shown with \"{website}\" and can be updated. The question is \"What is the website of {title()}?\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "contact:website", - "description": "Layer 'Recycling' shows contact:website~.+ with a fixed text, namely '{contact:website}' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)" + "description": "contact:website~.+ is displayed as \"{contact:website}\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#website", + "icon_url": "./assets/layers/icons/website.svg" }, { "key": "email", - "description": "Layer 'Recycling' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)" + "description": "Values of `email` are shown with \"{email}\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "contact:email", - "description": "Layer 'Recycling' shows contact:email~.+ with a fixed text, namely '{contact:email}' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)" + "description": "contact:email~.+ is displayed as \"{contact:email}\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "operator:email", - "description": "Layer 'Recycling' shows operator:email~.+ with a fixed text, namely '{operator:email}' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)" + "description": "operator:email~.+ is displayed as \"{operator:email}\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#email", + "icon_url": "./assets/svg/envelope.svg" }, { "key": "phone", - "description": "Layer 'Recycling' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)" + "description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "contact:phone", - "description": "Layer 'Recycling' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)" + "description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#phone", + "icon_url": "./assets/layers/questions/phone.svg" }, { "key": "opening_hours", - "description": "Layer 'Recycling' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Waste')" + "description": "Values of `opening_hours` are shown with \"

Opening hours

{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of this recycling facility?\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#opening_hours_24_7", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "opening_hours", - "description": "Layer 'Recycling' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "24/7" + "value": "24/7", + "description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#opening_hours_24_7", + "icon_url": "./assets/layers/questions/open24_7.svg" }, { "key": "opening_hours", - "description": "Layer 'Recycling' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Waste')", - "value": "closed" + "value": "closed", + "description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#opening_hours_24_7", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "access", - "description": "Layer 'Recycling' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Waste')" + "description": "Values of `access` are shown with \"This recycling facility can be used by {access}\" and can be updated. The question is \"Who can use this recycling facility?\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#access", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "access", - "description": "Layer 'Recycling' shows access=yes with a fixed text, namely 'Everyone can use this recycling facility' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"Everyone can use this recycling facility\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#access", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "access", - "description": "Layer 'Recycling' shows access=residents with a fixed text, namely 'Only residents can use this recycling facility' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "residents" + "value": "residents", + "description": "access=residents is displayed as \"Only residents can use this recycling facility\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#access", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "access", - "description": "Layer 'Recycling' shows access=private with a fixed text, namely 'This recycling facility is only for private use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "private" + "value": "private", + "description": "access=private is displayed as \"This recycling facility is only for private use\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#access", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "survey:date", - "description": "Layer 'Recycling' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Waste')" + "description": "Values of `survey:date` are shown with \"This object was last surveyed on {survey:date}\" and can be updated. The question is \"When was this object last surveyed?\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#survey_date", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "survey:date", - "description": "Layer 'Recycling' shows survey:date= with a fixed text, namely 'This object was last surveyed today' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key survey:date.", - "value": "" + "description": "survey:date= is displayed as \"This object was last surveyed today\" by layer Recycling", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#survey_date", + "icon_url": "./assets/layers/recycling/recycling-14.svg" }, { "key": "amenity", - "description": "The MapComplete theme Waste has a layer Waste Disposal Bins showing features with this tag", - "value": "waste_disposal" - }, - { - "key": "id", - "description": "Layer 'Waste Disposal Bins' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Waste') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" - }, - { - "key": "image", - "description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "panoramax", - "description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "value": "waste_disposal", + "description": "Features with this tag are displayed by layer Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md", + "icon_url": "./assets/layers/waste_disposal/waste_disposal.svg" }, { "key": "amenity", - "description": "Layer 'Waste Disposal Bins' shows amenity=waste_disposal with a fixed text, namely 'This is a medium to large bin for disposal of (household) waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "waste_disposal" + "value": "waste_disposal", + "description": "amenity=waste_disposal is displayed as \"This is a medium to large bin for disposal of (household) waste\" by layer Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#type", + "icon_url": "./assets/layers/waste_disposal/waste_disposal.svg" }, { "key": "amenity", - "description": "Layer 'Waste Disposal Bins' shows amenity=recycling with a fixed text, namely 'This is actually a recycling container' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "recycling" + "value": "recycling", + "description": "amenity=recycling is displayed as \"This is actually a recycling container\" by layer Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#type", + "icon_url": "./assets/layers/waste_disposal/waste_disposal.svg" }, { "key": "access", - "description": "Layer 'Waste Disposal Bins' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Waste')" + "description": "Values of `access` are shown with \"Access: {access}\" and can be updated. The question is \"Who can use this waste disposal bin?\" by layer Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#access", + "icon_url": "./assets/layers/waste_disposal/waste_disposal.svg" }, { "key": "access", - "description": "Layer 'Waste Disposal Bins' shows access=yes with a fixed text, namely 'This bin can be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "yes" + "value": "yes", + "description": "access=yes is displayed as \"This bin can be used by anyone\" by layer Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#access", + "icon_url": "./assets/layers/waste_disposal/waste_disposal.svg" }, { "key": "access", - "description": "Layer 'Waste Disposal Bins' shows access=no with a fixed text, namely 'This bin is private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "no" + "value": "no", + "description": "access=no is displayed as \"This bin is private\" by layer Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#access", + "icon_url": "./assets/layers/waste_disposal/waste_disposal.svg" }, { "key": "access", - "description": "Layer 'Waste Disposal Bins' shows access=residents with a fixed text, namely 'This bin is only for residents' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "residents" - }, - { - "key": "location", - "description": "Layer 'Waste Disposal Bins' shows location=underground with a fixed text, namely 'This is an underground container' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "underground" - }, - { - "key": "location", - "description": "Layer 'Waste Disposal Bins' shows location=indoor with a fixed text, namely 'This container is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')", - "value": "indoor" - }, - { - "key": "location", - "description": "Layer 'Waste Disposal Bins' shows location= with a fixed text, namely 'This container is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key location.", - "value": "" + "value": "residents", + "description": "access=residents is displayed as \"This bin is only for residents\" by layer Waste Disposal Bins", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#access", + "icon_url": "./assets/layers/waste_disposal/waste_disposal.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_waste_basket.json b/Docs/TagInfo/mapcomplete_waste_basket.json index 5305ba20d2..7d93443006 100644 --- a/Docs/TagInfo/mapcomplete_waste_basket.json +++ b/Docs/TagInfo/mapcomplete_waste_basket.json @@ -7,107 +7,145 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", "icon_url": "https://mapcomplete.org/assets/themes/waste_basket/waste_basket.svg", "contact_name": "Pieter Vander Vennet", - "contact_email": "pietervdvn@posteo.net" + "contact_email": "info@mapcomplete.org" }, "tags": [ { "key": "amenity", - "description": "The MapComplete theme Waste Baskets has a layer Waste Basket showing features with this tag", - "value": "waste_basket" + "value": "waste_basket", + "description": "Features with this tag are displayed by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "id", - "description": "Layer 'Waste Basket' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Waste Baskets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))" + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#just_created", + "icon_url": "./assets/svg/party.svg" }, { "key": "image", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "panoramax", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "mapillary", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "wikidata", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "wikipedia", - "description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste= with a fixed text, namely 'A waste basket for general waste' (in the mapcomplete.org theme 'Waste Baskets') Picking this answer will delete the key waste.", - "value": "" + "description": "waste= is displayed as \"A waste basket for general waste\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=trash with a fixed text, namely 'A waste basket for general waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')", - "value": "trash" + "value": "trash", + "description": "waste=trash is displayed as \"A waste basket for general waste\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=dog_excrement with a fixed text, namely 'A waste basket for dog excrements' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')", - "value": "dog_excrement" + "value": "dog_excrement", + "description": "waste=dog_excrement is displayed as \"A waste basket for dog excrements\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=cigarettes with a fixed text, namely 'A waste basket for cigarettes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')", - "value": "cigarettes" + "value": "cigarettes", + "description": "waste=cigarettes is displayed as \"A waste basket for cigarettes\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=drugs with a fixed text, namely 'A waste basket for drugs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')", - "value": "drugs" + "value": "drugs", + "description": "waste=drugs is displayed as \"A waste basket for drugs\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=sharps with a fixed text, namely 'A waste basket for needles and other sharp objects' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')", - "value": "sharps" + "value": "sharps", + "description": "waste=sharps is displayed as \"A waste basket for needles and other sharp objects\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=plastic with a fixed text, namely 'A waste basket for plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')", - "value": "plastic" + "value": "plastic", + "description": "waste=plastic is displayed as \"A waste basket for plastic\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=pmd with a fixed text, namely 'A waste basket for plastic packaging, metal packaging and drink cartons (PMD)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')", - "value": "pmd" + "value": "pmd", + "description": "waste=pmd is displayed as \"A waste basket for plastic packaging, metal packaging and drink cartons (PMD)\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste=paper with a fixed text, namely 'A waste basket for paper' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')", - "value": "paper" + "value": "paper", + "description": "waste=paper is displayed as \"A waste basket for paper\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "excrement_bags" + "value": "excrement_bags", + "description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "not:vending", - "description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets') Picking this answer will delete the key not:vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "not:vending", - "description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "excrement_bags" + "value": "excrement_bags", + "description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending= with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' (in the mapcomplete.org theme 'Waste Baskets') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)", - "value": "" + "description": "vending= is displayed as \"This waste basket does not have a dispenser for (dog) excrement bags\" by layer Waste Basket", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags", + "icon_url": "./assets/themes/waste_basket/waste_basket.svg" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_wayside_shrines.json b/Docs/TagInfo/mapcomplete_wayside_shrines.json new file mode 100644 index 0000000000..3d5744a17b --- /dev/null +++ b/Docs/TagInfo/mapcomplete_wayside_shrines.json @@ -0,0 +1,906 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Wayside shrines", + "description": "This map shows shrines and crosses found on the side of roads and paths, and allows adding new ones", + "project_url": "https://mapcomplete.org/wayside_shrines", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", + "icon_url": "https://mapcomplete.org/assets/layers/wayside_shrine/shrine.svg", + "contact_name": "Pieter Vander Vennet", + "contact_email": "info@mapcomplete.org" + }, + "tags": [ + { + "key": "historic", + "value": "wayside_shrine", + "description": "Features with this tag are displayed by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "historic", + "value": "wayside_cross", + "description": "Features with this tag are displayed by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "id", + "description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#just_created", + "icon_url": "./assets/svg/party.svg" + }, + { + "key": "image", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "panoramax", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "mapillary", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "wikidata", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "wikipedia", + "description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "name", + "description": "Values of `name` are shown with \"The name of this {title()} is {name}\" and can be updated. The question is \"What's the name of this {title()}?\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#shrine_name", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "noname", + "value": "yes", + "description": "noname=yes is displayed as \"This shrine does not have a name\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#shrine_name", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "inscription", + "description": "Values of `inscription` are shown with \"The inscription is {inscription}\" and can be updated. The question is \"Is there an inscription?\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#inscription", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "not:inscription", + "value": "yes", + "description": "not:inscription=yes is displayed as \"No inscription\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#inscription", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "inscription", + "value": "Ave Maria", + "description": "inscription=Ave Maria is displayed as \"The inscription is Ave Maria\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#inscription", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "inscription", + "value": "I.N.R.I", + "description": "inscription=I.N.R.I is displayed as \"The inscription is I.N.R.I.\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#inscription", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "description": "Values of `religion` are shown with \"This shrine is {religion}\" and can be updated. The question is \"To which religion is this shrine dedicated?\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "christian", + "description": "religion=christian is displayed as \"This is a Christian shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "buddhist", + "description": "religion=buddhist is displayed as \"This is a Buddhist shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "hindu", + "description": "religion=hindu is displayed as \"This is a Hindu shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "jain", + "description": "religion=jain is displayed as \"This is a Jain shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "jewish", + "description": "religion=jewish is displayed as \"This is a Jewish shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "muslim", + "description": "religion=muslim is displayed as \"This is an Islamic shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "pagan", + "description": "religion=pagan is displayed as \"This is a Pagan shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "shinto", + "description": "religion=shinto is displayed as \"This is a Shinto shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "sikh", + "description": "religion=sikh is displayed as \"This is a Sikh shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "taoist", + "description": "religion=taoist is displayed as \"This is a Taoist shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "religion", + "value": "zoroastrian", + "description": "religion=zoroastrian is displayed as \"This is a Zoroastrian shrine\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious denomination is {denomination}\" and can be updated. The question is \"What's the Christian denomination of this {title()}?\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "catholic", + "description": "denomination=catholic is displayed as \"The religious subdenomination is Catholic\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "roman_catholic", + "description": "denomination=roman_catholic is displayed as \"The religious subdenomination is Roman Catholic\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "orthodox", + "description": "denomination=orthodox is displayed as \"The religious subdenomination is Orthodox\" by layers Wayside Shrines and Crosses, Wayside Shrines and Crosses, Artworks, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "greek_orthodox", + "description": "denomination=greek_orthodox is displayed as \"The religious subdenomination is Greek-Orthodox\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "russian_orthodox", + "description": "denomination=russian_orthodox is displayed as \"The religious subdenomination is Russian-Orthodox\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "serbian_orthodox", + "description": "denomination=serbian_orthodox is displayed as \"The religious subdenomination is Serbian Orthodox\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "protestant", + "description": "denomination=protestant is displayed as \"The religious subdenomination is Protestant\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "anglican", + "description": "denomination=anglican is displayed as \"The religious subdenomination is Anglican\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "adventist", + "description": "denomination=adventist is displayed as \"The religious subdenomination is Adventist\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "evangelical", + "description": "denomination=evangelical is displayed as \"The religious subdenomination is evangelical\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Muslim denomination of this shrine?\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_muslim", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "shia", + "description": "denomination=shia is displayed as \"The religious subdenomination is Shia\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_muslim", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "sunni", + "description": "denomination=sunni is displayed as \"The religious subdenomination is Sunni\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_muslim", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "sufi", + "description": "denomination=sufi is displayed as \"The religious subdenomination is Sufi\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_muslim", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Jewish denomination of this shrine?\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_jewish", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "conservative", + "description": "denomination=conservative is displayed as \"The religious subdenomination is Conservative\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_jewish", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "hasidic", + "description": "denomination=hasidic is displayed as \"The religious subdenomination is Hasidic\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_jewish", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "value": "reform", + "description": "denomination=reform is displayed as \"The religious subdenomination is Reform\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_jewish", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The denomination of this shrine is {denomination}\" and can be updated. The question is \"What's the denomination of this shrine?\" by layers Wayside Shrines and Crosses, Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_other", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "level", + "description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "location", + "value": "underground", + "description": "location=underground is displayed as \"Located underground\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "level", + "value": "0", + "description": "level=0 is displayed as \"Located on the ground floor\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "level", + "description": "level= is displayed as \"Located on the ground floor\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "level", + "value": "1", + "description": "level=1 is displayed as \"Located on the first floor\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "level", + "value": "-1", + "description": "level=-1 is displayed as \"Located on the first basement level\" by layer Wayside Shrines and Crosses", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "tourism", + "value": "artwork", + "description": "Features with this tag are displayed by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "architecture", + "description": "artwork_type=architecture is displayed as \"Architecture\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "mural", + "description": "artwork_type=mural is displayed as \"Mural\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "painting", + "description": "artwork_type=painting is displayed as \"Painting\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "sculpture", + "description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "statue", + "description": "artwork_type=statue is displayed as \"Statue\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "bust", + "description": "artwork_type=bust is displayed as \"Bust\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "stone", + "description": "artwork_type=stone is displayed as \"Stone\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "installation", + "description": "artwork_type=installation is displayed as \"Installation\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "graffiti", + "description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "relief", + "description": "artwork_type=relief is displayed as \"Relief\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "azulejo", + "description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "tilework", + "description": "artwork_type=tilework is displayed as \"Tilework\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artwork_type", + "value": "woodcarving", + "description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artist:wikidata", + "description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artist_wikidata", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "artist_name", + "description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artist_name", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "website", + "description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_website", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "wikidata", + "description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "wikipedia", + "description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "wikidata", + "description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "subject:wikidata", + "description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_subject", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "historic", + "value": "memorial", + "description": "historic=memorial is displayed as \"This artwork also serves as a memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_memorial", + "icon_url": "./assets/layers/memorial/memorial.svg" + }, + { + "key": "historic", + "description": "historic= is displayed as \"This artwork does not serve as a memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "description": "Values of `memorial` are shown with \"This is a {memorial}\" and can be updated. The question is \"What type of memorial is this?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "statue", + "description": "memorial=statue is displayed as \"This is a statue\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "plaque", + "description": "memorial=plaque is displayed as \"This is a plaque\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "bench", + "description": "memorial=bench is displayed as \"This is a commemorative bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "ghost_bike", + "description": "memorial=ghost_bike is displayed as \"This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "stolperstein", + "description": "memorial=stolperstein is displayed as \"This is a stolperstein (stumbing stone)\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "stele", + "description": "memorial=stele is displayed as \"This is a stele\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "stone", + "description": "memorial=stone is displayed as \"This is a memorial stone\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "bust", + "description": "memorial=bust is displayed as \"This is a bust\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "sculpture", + "description": "memorial=sculpture is displayed as \"This is a sculpture\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "obelisk", + "description": "memorial=obelisk is displayed as \"This is an obelisk\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "cross", + "description": "memorial=cross is displayed as \"This is a cross\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "blue_plaque", + "description": "memorial=blue_plaque is displayed as \"This is a blue plaque\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "tank", + "description": "memorial=tank is displayed as \"This is a historic tank, permanently placed in public space as memorial\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "memorial", + "value": "tree", + "description": "memorial=tree is displayed as \"This is a memorial tree\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "historic", + "value": "tomb", + "description": "historic=tomb is displayed as \"This is a gravestone; the person is buried here\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "inscription", + "description": "Values of `inscription` are shown with \"The inscription on this memorial reads:

{inscription}

\" and can be updated. The question is \"What is the inscription on this memorial?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "not:inscription", + "value": "yes", + "description": "not:inscription=yes is displayed as \"This memorial does not have an inscription\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "amenity", + "value": "bench", + "description": "amenity=bench is displayed as \"This artwork also serves as a bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_bench", + "icon_url": "./assets/layers/bench/bench.svg" + }, + { + "key": "amenity", + "description": "amenity= is displayed as \"This artwork does not serve as a bench\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_bench", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "backrest", + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" + }, + { + "key": "two_sided", + "value": "yes", + "description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest", + "icon_url": "./assets/layers/bench/two_sided.svg" + }, + { + "key": "backrest", + "value": "yes", + "description": "backrest=yes is displayed as \"This bench does have a backrest\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest", + "icon_url": "./assets/layers/bench/one_sided.svg" + }, + { + "key": "backrest", + "value": "no", + "description": "backrest=no is displayed as \"This bench does not have a backrest\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest", + "icon_url": "./assets/layers/bench/no_backrest.svg" + }, + { + "key": "armrest", + "value": "yes", + "description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_armrest", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "armrest", + "value": "no", + "description": "armrest=no is displayed as \"This bench does not have any armrests\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_armrest", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "seats", + "description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_seats", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "seats:separated", + "value": "no", + "description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_seats", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "material", + "description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "material", + "value": "wood", + "description": "material=wood is displayed as \"The seating is made from wood\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "material", + "value": "metal", + "description": "material=metal is displayed as \"The seating is made from metal\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "material", + "value": "stone", + "description": "material=stone is displayed as \"The seating is made from stone\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "material", + "value": "concrete", + "description": "material=concrete is displayed as \"The seating is made from concrete\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "material", + "value": "plastic", + "description": "material=plastic is displayed as \"The seating is made from plastic\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "material", + "value": "steel", + "description": "material=steel is displayed as \"The seating is made from steel\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "direction", + "description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_direction", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "value": "brown", + "description": "colour=brown is displayed as \"Colour: brown\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "value": "green", + "description": "colour=green is displayed as \"Colour: green\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "value": "gray", + "description": "colour=gray is displayed as \"Colour: gray\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "value": "white", + "description": "colour=white is displayed as \"Colour: white\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "value": "red", + "description": "colour=red is displayed as \"Colour: red\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "value": "black", + "description": "colour=black is displayed as \"Colour: black\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "value": "blue", + "description": "colour=blue is displayed as \"Colour: blue\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "colour", + "value": "yellow", + "description": "colour=yellow is displayed as \"Colour: yellow\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "survey:date", + "description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_survey_date", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "survey:date", + "description": "survey:date= is displayed as \"Surveyed today!\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_survey_date", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "inscription", + "description": "Values of `inscription` are shown with \"This bench has the following inscription:

{inscription}

\" and can be updated. The question is \"Does this bench have an inscription?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "not:inscription", + "value": "yes", + "description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "inscription", + "description": "inscription= is displayed as \"This bench probably does not not have an inscription\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "historic", + "value": "memorial", + "description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "historic", + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "not:historic", + "value": "memorial", + "description": "historic= & not:historic=memorial is displayed as \"This bench is a not a memorial for someone or something\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "historic", + "value": "wayside_shrine", + "description": "historic=wayside_shrine is displayed as \"This artwork acts as a wayside shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_wayside_shrine", + "icon_url": "./assets/layers/wayside_shrine/shrine.svg" + }, + { + "key": "historic", + "description": "historic= is displayed as \"This artwork does not act as a wayside shrine\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_wayside_shrine", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "name", + "description": "Values of `name` are shown with \"The name of this shrine is {name}\" and can be updated. The question is \"What's the name of this shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#shrine_name", + "icon_url": "./assets/themes/artwork/artwork.svg" + }, + { + "key": "denomination", + "description": "Values of `denomination` are shown with \"The religious denomination is {denomination}\" and can be updated. The question is \"What's the Christian denomination of the shrine?\" by layer Artworks", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian", + "icon_url": "./assets/themes/artwork/artwork.svg" + } + ] +} \ No newline at end of file diff --git a/Docs/Themes/architecture.md b/Docs/Themes/architecture.md index 5632e23023..1db572970d 100644 --- a/Docs/Themes/architecture.md +++ b/Docs/Themes/architecture.md @@ -16,6 +16,8 @@ Available languages: - en - de - zh_Hant + - cs + - uk # Table of contents diff --git a/Docs/Themes/cyclofix.md b/Docs/Themes/cyclofix.md index 18f2e146f7..3f43b6675a 100644 --- a/Docs/Themes/cyclofix.md +++ b/Docs/Themes/cyclofix.md @@ -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.*)$ diff --git a/Docs/Themes/ghostsigns.md b/Docs/Themes/ghostsigns.md index 0caac1677b..7a31649d4f 100644 --- a/Docs/Themes/ghostsigns.md +++ b/Docs/Themes/ghostsigns.md @@ -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: | [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) | | [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | | | [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) | +| [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) | +| [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | | +| [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) | +| [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) | +| [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) | +| [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) | +| [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 historic=memorial + - *This artwork also serves as a memorial* is shown if with historic=memorial - *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 amenity=bench + - *This artwork also serves as a bench* is shown if with amenity=bench - *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?` + + - *This artwork acts as a wayside shrine* is shown if with historic=wayside_shrine + - *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 {name}* is shown if `name` is set + + - *This shrine does not have a name* is shown if with noname=yes + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine +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 religion=christian + - *This is a Buddhist shrine* is shown if with religion=buddhist + - *This is a Hindu shrine* is shown if with religion=hindu + - *This is a Jain shrine* is shown if with religion=jain + - *This is a Jewish shrine* is shown if with religion=jewish + - *This is an Islamic shrine* is shown if with religion=muslim + - *This is a Pagan shrine* is shown if with religion=pagan + - *This is a Shinto shrine* is shown if with religion=shinto + - *This is a Sikh shrine* is shown if with religion=sikh + - *This is a Taoist shrine* is shown if with religion=taoist + - *This is a Zoroastrian shrine* is shown if with religion=zoroastrian + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine +This tagrendering has labels +`shrine_questions` + +### denomination_christian + +The question is `What's the Christian denomination of the shrine?` +*The religious denomination is {denomination}* is shown if `denomination` is set + + - *The religious subdenomination is Catholic* is shown if with denomination=catholic + - *The religious subdenomination is Roman Catholic* is shown if with denomination=roman_catholic + - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox + - *The religious subdenomination is Greek-Orthodox* is shown if with denomination=greek_orthodox + - *The religious subdenomination is Russian-Orthodox* is shown if with denomination=russian_orthodox + - *The religious subdenomination is Serbian Orthodox* is shown if with denomination=serbian_orthodox + - *The religious subdenomination is Protestant* is shown if with denomination=protestant + - *The religious subdenomination is Anglican* is shown if with denomination=anglican + - *The religious subdenomination is Adventist* is shown if with denomination=adventist + - *The religious subdenomination is evangelical* is shown if with denomination=evangelical + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=christian +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 denomination=shia + - *The religious subdenomination is Sunni* is shown if with denomination=sunni + - *The religious subdenomination is Sufi* is shown if with denomination=sufi + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=muslim +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 denomination=conservative + - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox + - *The religious subdenomination is Hasidic* is shown if with denomination=hasidic + - *The religious subdenomination is Reform* is shown if with denomination=reform + +This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion=jewish +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: historic=wayside_shrine & 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_ diff --git a/Docs/Themes/openlovemap.md b/Docs/Themes/openlovemap.md index 6dbc31c137..a6f68a1a28 100644 --- a/Docs/Themes/openlovemap.md +++ b/Docs/Themes/openlovemap.md @@ -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.*)$ diff --git a/Docs/Themes/personal.md b/Docs/Themes/personal.md index e47de79a76..072df8b90b 100644 --- a/Docs/Themes/personal.md +++ b/Docs/Themes/personal.md @@ -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: diff --git a/Docs/Themes/scouting.md b/Docs/Themes/scouting.md index 4ca2a44b62..f9707dfaf1 100644 --- a/Docs/Themes/scouting.md +++ b/Docs/Themes/scouting.md @@ -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. tourism=camp_site -1. group_only=yes | scout=yes + - leisure=summer_camp + - tourism=camp_site & (group=yes | group_only=yes | scout=yes | scout=only) & 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. tourism=hostel -1. group_only=yes | scout=yes +1. group=yes | group_only=yes | scout=yes | scout=only +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 diff --git a/Docs/Themes/velopark.md b/Docs/Themes/velopark.md index 1fb197ec81..157c8452ce 100644 --- a/Docs/Themes/velopark.md +++ b/Docs/Themes/velopark.md @@ -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 diff --git a/Docs/Themes/vending_machine.md b/Docs/Themes/vending_machine.md index 9c202d7831..83f0ffd566 100644 --- a/Docs/Themes/vending_machine.md +++ b/Docs/Themes/vending_machine.md @@ -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.*)$ diff --git a/Docs/Themes/wayside_shrines.md b/Docs/Themes/wayside_shrines.md new file mode 100644 index 0000000000..4ff97c7651 --- /dev/null +++ b/Docs/Themes/wayside_shrines.md @@ -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) diff --git a/Docs/wikiIndex.txt b/Docs/wikiIndex.txt index e9b8edddf0..4c425f8961 100644 --- a/Docs/wikiIndex.txt +++ b/Docs/wikiIndex.txt @@ -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 +}} |} \ No newline at end of file diff --git a/assets/layers/address/address.json b/assets/layers/address/address.json index 93b4d32bfa..6015eac38a 100644 --- a/assets/layers/address/address.json +++ b/assets/layers/address/address.json @@ -173,7 +173,9 @@ "en": "{addr:street} {addr:housenumber} {addr:unit}", "ca": "{addr:street} {addr:housenumber} {addr:unit}", "de": "{addr:street} {addr:housenumber} {addr:unit}", - "cs": "{addr:street} {addr:housenumber} {addr:unit}" + "cs": "{addr:street} {addr:housenumber} {addr:unit}", + "zh_Hant": "{addr:street} {addr:housenumber} {addr:unit}", + "nl": "{addr:street} {addr:housenumber}{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 {addr:unit}", "nl": "De bus is {addr:unit}", "ca": "El número d'unitat és {addr:unit}", "de": "Die Nummer der Einheit lautet {addr:unit}", - "cs": "Číslo jednotky je {addr:unit}" + "cs": "Číslo jednotky je {addr:unit}", + "zh_Hant": "單位號碼是{addr:unit}" }, "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": "沒有單位號碼" } } ] diff --git a/assets/layers/advertising/advertising.json b/assets/layers/advertising/advertising.json index 50aa8ea2ca..93b1380e50 100644 --- a/assets/layers/advertising/advertising.json +++ b/assets/layers/advertising/advertising.json @@ -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": { diff --git a/assets/layers/all_streets/all_streets.json b/assets/layers/all_streets/all_streets.json new file mode 100644 index 0000000000..9d1d18443c --- /dev/null +++ b/assets/layers/all_streets/all_streets.json @@ -0,0 +1,86 @@ +{ + "id": "all_streets", + "isCounted": false, + "name": { + "en": "All streets", + "nl": "Alle straten", + "ru": "Все улицы", + "zh_Hant": "所有道路", + "hu": "Minden utca", + "de": "Alle Straßen", + "ca": "Tots els carrers", + "es": "Todas las calles", + "fr": "Toutes les rues", + "nb_NO": "Alle gater", + "da": "Alle gader", + "pa_PK": "ساریاں سڑکاں", + "cs": "Všechny ulice", + "it": "Tutte le strade", + "pl": "Wszystkie ulice", + "ko": "모든 거리" + }, + "description": { + "en": "Layer with (almost) all streets", + "nl": "Laag met (bijna) alle straten" + }, + "source": { + "osmTags": { + "and": [ + "highway!=", + "service!=driveway", + "highway!=platform" + ] + } + }, + "minzoom": 18, + "title": { + "render": { + "en": "Street", + "nl": "Straat", + "ru": "Улица", + "zh_Hant": "照明", + "hu": "Utca", + "de": "Straße", + "ca": "Carrer", + "nb_NO": "Gate", + "fr": "Rue", + "da": "Gade", + "pa_PK": "سڑک", + "es": "Calle", + "cs": "Ulice", + "eu": "Kalea", + "it": "Strada", + "pl": "Ulica", + "ko": "거리" + }, + "mappings": [ + { + "if": "name~*", + "then": "{name}" + } + ] + }, + "tagRenderings": [ + "images" + ], + "allowSplit": true, + "pointRendering": null, + "lineRendering": [ + { + "color": { + "render": "#a9a9a9", + "mappings": [ + { + "if": "lit=no", + "then": "#303030" + }, + { + "if": "lit=yes", + "then": "#ff0" + } + ] + } + } + ], + "allowMove": false +} \ No newline at end of file diff --git a/assets/layers/building/building.json b/assets/layers/building/building.json index 67c09ec2ab..9f1013cdc0 100644 --- a/assets/layers/building/building.json +++ b/assets/layers/building/building.json @@ -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 {construction_date}", "ca": "Construït el {construction_date}", - "cs": "Postaveno {construction_date}" + "cs": "Postaveno {construction_date}", + "nl": "Gebouwd in {construction_date}" }, "freeform": { "key": "construction_date", diff --git a/assets/layers/campsite/campsite.json b/assets/layers/campsite/campsite.json index 0df9f02626..4ade74743a 100644 --- a/assets/layers/campsite/campsite.json +++ b/assets/layers/campsite/campsite.json @@ -134,58 +134,6 @@ "id": "name" }, "contact", - { - "id": "fee", - "question": { - "en": "Is a fee charged here?", - "de": "Wird hier eine Gebühr erhoben?", - "ca": "Aquí es cobra alguna tarifa?", - "cs": "Platí se tu poplatek?" - }, - "render": { - "en": "A fee of {charge} should be paid for here", - "de": "Hier wird eine Gebühr von {charge} erhoben", - "ca": "S'ha de pagar una tarifa de {charge} aquí", - "cs": "Platí se tu poplatek {charge}" - }, - "freeform": { - "key": "charge", - "type": "currency", - "addExtraTags": [ - "fee=yes" - ], - "inline": true - }, - "mappings": [ - { - "if": "fee=no", - "addExtraTags": [ - "charge=" - ], - "then": { - "en": "The campsite is free of charge", - "de": "Der Zeltplatz ist kostenlos", - "ca": "El càmping és gratuït", - "cs": "Kempování je zdarma" - } - }, - { - "if": { - "and": [ - "fee=yes", - "charge=" - ] - }, - "then": { - "en": "A fee is charged here.", - "de": "Hier wird eine Gebühr erhoben.", - "ca": "Aquí es cobra una tarifa.", - "cs": "Platí se tu poplatek." - }, - "hideInAnswer": "charge~*" - } - ] - }, { "question": { "de": "Wie viele Personen können hier übernachten?", @@ -205,6 +153,94 @@ }, "id": "capacity_persons" }, + { + "icon": "./assets/layers/questions/cash.svg", + "condition": { + "and": [ + "charge=" + ] + }, + "id": "fee", + "question": { + "en": "Is there a fee?", + "de": "Gibt es hier eine Gebühr?" + }, + "mappings": [ + { + "if": "fee=no", + "addExtraTags": [ + "charge=" + ], + "then": { + "en": "The campsite is free of charge", + "de": "Der Zeltplatz ist kostenlos" + }, + "icon": "./assets/layers/questions/cash.svg" + }, + { + "if": "fee=yes", + "then": { + "en": "There is a fee.", + "de": "Es gibt eine Gebühr." + }, + "icon": "./assets/layers/questions/cash.svg" + } + ] + }, + { + "icon": "./assets/layers/questions/cash.svg", + "condition": { + "and": [ + "charge!~^(.*;|)[^;\/]*\/day(|[^\/].*)$", + "fee!=no" + ] + }, + "id": "charge_person_day", + "question": { + "en": "What is the charge per person per day?", + "de": "Was ist die Gebühr pro Person pro Tag?" + }, + "render": { + "en": "Charge per person per day: {charge}", + "de": "Gebühr pro Person pro Tag: {charge}" + }, + "freeform": { + "key": "charge", + "type": "currency", + "inline": true, + "postfixDistinguished": "person/day", + "addExtraTags": [ + "fee=yes" + ] + } + }, + { + "icon": "./assets/layers/questions/cash.svg", + "condition": { + "and": [ + "charge!~.*\/person\/day.*", + "fee!=no" + ] + }, + "id": "charge_day", + "question": { + "en": "What is the charge per day?", + "de": "Was ist die Gebühr pro Tag?" + }, + "render": { + "en": "Charge per day: {charge}", + "de": "Gebühr pro Tag: {charge}" + }, + "freeform": { + "key": "charge", + "type": "currency", + "inline": true, + "postfixDistinguished": "day", + "addExtraTags": [ + "fee=yes" + ] + } + }, "caravansites.caravansites-toilets", "toilet_at_amenity.toilets-wheelchair", "questions", diff --git a/assets/layers/crossings/crossings.json b/assets/layers/crossings/crossings.json index 354c455cdc..77c56e9ddb 100644 --- a/assets/layers/crossings/crossings.json +++ b/assets/layers/crossings/crossings.json @@ -166,69 +166,44 @@ "tagRenderings": [ "images", { - "id": "crossing-type", + "id": "signals", "question": { - "en": "What kind of crossing is this?", - "nl": "Wat voor oversteekplaats is dit?", - "de": "Was ist das für eine Kreuzung?", - "es": "¿Qué tipo de cruce es este?", - "fr": "Quel type de passage piéton est-ce ?", - "ca": "Quin tipus de creuament és aquest?", - "cs": "Co je to za přechod?" + "en": "Are there traffic signals at this crossing?", + "nl": "Zijn er verkeerslichten bij deze oversteekplaats?" }, - "condition": "highway=crossing", "mappings": [ { - "if": "crossing=uncontrolled", + "if": "crossing:signals=no", "then": { - "en": "Crossing, without traffic lights", - "nl": "Oversteekplaats, zonder verkeerslichten", - "de": "Kreuzungen ohne Ampeln", - "es": "Cruce, sin semáforos", - "fr": "Passage piéton, sans feux de signalisation", - "ca": "Creuament, sense semàfors", - "cs": "Přechod bez světelné signalizace" + "en": "There are no traffic signals at this crossing", + "nl": "Er zijn geen verkeerslichten bij deze oversteekplaats" + } + }, + { + "if": "crossing:signals=yes", + "then": { + "en": "There are traffic signals at this crossing", + "nl": "Er zijn verkeerslichten bij deze oversteekplaats" + }, + "icon": { + "class": "small", + "path": "./assets/layers/crossings/traffic_lights.svg" } }, { "if": "crossing=traffic_signals", "then": { - "en": "Crossing with traffic signals", - "nl": "Oversteekplaats met verkeerslichten", - "de": "Kreuzungen mit Ampeln", - "es": "Cruce con semáforos", - "fr": "Passage piéton avec des feux de signalisation", - "ca": "Creuament amb semàfors", - "cs": "Přechod se světelnou signalizací" - } - }, - { - "if": "crossing=zebra", - "then": { - "en": "Zebra crossing", - "nl": "Zebrapad", - "de": "Zebrastreifen", - "ca": "Pas de zebra", - "es": "Paso de peatones", - "fr": "Passage piéton", - "cs": "Zebra přechod" + "en": "There are traffic signals at this crossing", + "nl": "Er zijn verkeerslichten bij deze oversteekplaats" }, - "hideInAnswer": true - }, - { - "if": "crossing=unmarked", - "then": { - "en": "Crossing without crossing markings", - "nl": "Oversteekplaats zonder kruispuntmarkeringen", - "de": "Kreuzung ohne Kreuzungsmarkierungen", - "es": "Cruce sin marcas de cruce", - "fr": "Passage piéton sans marquages", - "ca": "Creuament sense senyalitzar", - "cs": "Přechod bez označení přechodu" + "icon": { + "class": "small", + "path": "./assets/layers/crossings/traffic_lights.svg" }, "hideInAnswer": true } - ] + ], + "condition": "highway=crossing" }, { "id": "markings", @@ -467,7 +442,9 @@ "fixme=Free-form value used in MapComplete for crossing:markings" ] }, - "multiAnswer": true + "multiAnswer": true, + "condition": "highway=crossing", + "invalidValues": "crossing:markings=yes" }, { "id": "crossing-bicycle-allowed", @@ -599,6 +576,13 @@ "cs": "Tento přechod má hmatovou dlažbu, ale ne správně" }, "hideInAnswer": true + }, + { + "if": "tactile_paving=partial", + "then": { + "en": "This crrosing has tactile paving, but only on one side", + "nl": "Deze oversteekplaats heeft een geleidelijn, maar slechts aan één kant" + } } ] }, @@ -949,4 +933,4 @@ "enableImproveAccuracy": true, "enableRelocation": false } -} +} \ No newline at end of file diff --git a/assets/layers/elevator/elevator.json b/assets/layers/elevator/elevator.json index a7a5f57474..3befdf6bb8 100644 --- a/assets/layers/elevator/elevator.json +++ b/assets/layers/elevator/elevator.json @@ -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", diff --git a/assets/layers/entrance/entrance.json b/assets/layers/entrance/entrance.json index 50148fc9c7..e044044ffd 100644 --- a/assets/layers/entrance/entrance.json +++ b/assets/layers/entrance/entrance.json @@ -33,17 +33,17 @@ "minzoom": 14, "title": { "render": { - "en": "Entrance", - "nl": "Ingang", - "ca": "Entrada", - "da": "Indgang", - "de": "Eingang", - "es": "Entrada", - "fr": "Entrée", - "pa_PK": "دروازہ", - "pl": "Wejście", - "cs": "Vchod", - "cy": "Mynedfa" + "en": "Entrance {ref}", + "nl": "Ingang {ref}", + "ca": "Entrada {ref}", + "da": "Indgang {ref}", + "de": "Eingang {ref}", + "es": "Entrada {ref}", + "fr": "Entrée {ref}", + "pa_PK": "دروازہ{ref}", + "pl": "Wejście {ref}", + "cs": "Vchod {ref}", + "cy": "Mynedfa {ref}" } }, "pointRendering": [ @@ -68,7 +68,16 @@ ] } } - ] + ], + "label": { + "mappings": [ + { + "if": "ref~*", + "then": "{ref}" + } + ] + }, + "labelCssClasses": "rounded bg-white px-2" } ], "lineRendering": [], @@ -578,6 +587,29 @@ } } ] + }, + { + "id": "ref", + "question": { + "en": "Does this door have a reference number?", + "nl": "Heeft deze toegang een referentienummer?" + }, + "render": { + "en": "This door has {ref} as reference number", + "nl": "Deze deur heeft {ref} als referentienummer" + }, + "mappings": [ + { + "if": "ref=", + "then": { + "en": "No reference number", + "nl": "Geen referentienummer" + } + } + ], + "freeform": { + "key": "ref" + } } ], "filter": [ diff --git a/assets/layers/firepit/firepit.json b/assets/layers/firepit/firepit.json index 0d0a5cc4cb..7659340d9b 100644 --- a/assets/layers/firepit/firepit.json +++ b/assets/layers/firepit/firepit.json @@ -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?" } } } diff --git a/assets/layers/food/food.json b/assets/layers/food/food.json index 596170d236..1905cc3c77 100644 --- a/assets/layers/food/food.json +++ b/assets/layers/food/food.json @@ -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" } } ], diff --git a/assets/layers/guidepost/guidepost.json b/assets/layers/guidepost/guidepost.json index 18b8f6c403..831074b98d 100644 --- a/assets/layers/guidepost/guidepost.json +++ b/assets/layers/guidepost/guidepost.json @@ -133,6 +133,96 @@ } } ] + }, + { + "id": "name", + "question": { + "en": "What is the name noted on this guidepost?" + }, + "freeform": { + "key": "name", + "type": "string", + "placeholder": { + "en": "Name on the guidepost" + }, + "addExtraTags": [ + "noname=" + ] + }, + "render": { + "en": "Name noted on the guidepost: {name}" + }, + "mappings": [ + { + "if": "noname=yes", + "then": { + "en": "There is no name noted on this guidepost" + }, + "addExtraTags": [ + "name=" + ] + } + ] + }, + { + "id": "ref", + "question": { + "en": "What is the reference number of this guidepost?" + }, + "freeform": { + "key": "ref", + "type": "string", + "placeholder": { + "en": "Reference number of the guidepost" + }, + "addExtraTags": [ + "noref=" + ] + }, + "render": { + "en": "Reference number of the guidepost: {ref}" + }, + "mappings": [ + { + "if": "noref=yes", + "then": { + "en": "There is no reference number noted on this guidepost" + }, + "addExtraTags": [ + "ref=" + ] + } + ] + }, + { + "id": "ele", + "question": { + "en": "What is the elevation noted on this guidepost?" + }, + "freeform": { + "key": "ele", + "type": "float", + "placeholder": { + "en": "Elevation on the guidepost (in meters)" + }, + "addExtraTags": [ + "noele=" + ] + }, + "render": { + "en": "Elevation noted on the guidepost: {ele} m" + }, + "mappings": [ + { + "if": "noele=yes", + "then": { + "en": "There is no elevation noted on this guidepost" + }, + "addExtraTags": [ + "ele=" + ] + } + ] } ], "deletion": true, diff --git a/assets/layers/ice_cream/ice_cream.svg b/assets/layers/ice_cream/ice_cream.svg index f40ca6c486..5cd3498128 100644 --- a/assets/layers/ice_cream/ice_cream.svg +++ b/assets/layers/ice_cream/ice_cream.svg @@ -1,40 +1,61 @@ - - - - - - - - image/svg+xml - - - - - - - - - + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/assets/layers/item_with_image/camera.svg b/assets/layers/item_with_image/camera.svg index a29853276f..5dae59d812 100644 --- a/assets/layers/item_with_image/camera.svg +++ b/assets/layers/item_with_image/camera.svg @@ -1,64 +1,316 @@ - - Adwaita Icon Template - - - - + + + Adwaita Icon Template + + + + - - - - - - - + + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - + + - - + + + + Adwaita Icon Template + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/parcel_lockers/parcel_lockers.json b/assets/layers/parcel_lockers/parcel_lockers.json index c82c8cfc1b..5b51a38fa0 100644 --- a/assets/layers/parcel_lockers/parcel_lockers.json +++ b/assets/layers/parcel_lockers/parcel_lockers.json @@ -21,17 +21,7 @@ "es": "Capa que muestra taquillas para recoger y enviar paquetes." }, "source": { - "osmTags": { - "or": [ - "amenity=parcel_locker", - { - "and": [ - "amenity=vending_machine", - "vending=parcel_pickup;parcel_mail_in" - ] - } - ] - } + "osmTags": "amenity=parcel_locker" }, "minzoom": 12, "title": { @@ -259,9 +249,15 @@ "cs": "Z této schránky na balíky nemůžete posílat balíky", "es": "No puedes enviar paquetes desde esta taquilla" } + }, + { + "if": "parcel_mail_in=returns_only", + "then": { + "en": "You can send packages from this parcel locker, but only for returns", + "nl": "Je kan pakk etten versturen vanuit deze pakketautomaat, maar alleen voor retouren" + } } - ], - "condition": "amenity=parcel_locker" + ] }, { "id": "pickup", @@ -302,8 +298,7 @@ "es": "No puedes recoger paquetes de esta taquilla" } } - ], - "condition": "amenity=parcel_locker" + ] } ], "filter": [ @@ -313,4 +308,4 @@ "allowMove": { "enableImproveAccuracy": true } -} +} \ No newline at end of file diff --git a/assets/layers/picnic_table/picnic_table.json b/assets/layers/picnic_table/picnic_table.json index 09f51edf68..4428055252 100644 --- a/assets/layers/picnic_table/picnic_table.json +++ b/assets/layers/picnic_table/picnic_table.json @@ -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" } } ], diff --git a/assets/layers/playground/playground.json b/assets/layers/playground/playground.json index 7ee047b093..ade983e6b6 100644 --- a/assets/layers/playground/playground.json +++ b/assets/layers/playground/playground.json @@ -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" } }, { diff --git a/assets/layers/playground_equipment/playground_equipment.json b/assets/layers/playground_equipment/playground_equipment.json index 88f79991b1..4f2fabaac5 100644 --- a/assets/layers/playground_equipment/playground_equipment.json +++ b/assets/layers/playground_equipment/playground_equipment.json @@ -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~*" diff --git a/assets/layers/police/police.json b/assets/layers/police/police.json index 0d7f0ecfad..b6fa6e0930 100644 --- a/assets/layers/police/police.json +++ b/assets/layers/police/police.json @@ -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": "{name}", "es": "{name}", "ca": "{name}", - "cy": "{name}" + "cy": "{name}", + "cs": "{name}" }, "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í" } } ] diff --git a/assets/layers/postboxes/postboxes.json b/assets/layers/postboxes/postboxes.json index b365f4b44f..f3cbfdcde2 100644 --- a/assets/layers/postboxes/postboxes.json +++ b/assets/layers/postboxes/postboxes.json @@ -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 {operator}", "de": "Dieser Briefkasten wird von {operator} betrieben", "es": "Este buzón es operado por {operator}.", - "ca": "Aquesta bústia està operada per {operator}" + "ca": "Aquesta bústia està operada per {operator}", + "cs": "Tuto poštovní schránku provozuje {operator}" }, "freeform": { "key": "operator" diff --git a/assets/layers/postoffices/postoffices.json b/assets/layers/postoffices/postoffices.json index 561a8db364..19f0cc83d0 100644 --- a/assets/layers/postoffices/postoffices.json +++ b/assets/layers/postoffices/postoffices.json @@ -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": [ diff --git a/assets/layers/questions/questions.json b/assets/layers/questions/questions.json index da220c453a..876cc8dd90 100644 --- a/assets/layers/questions/questions.json +++ b/assets/layers/questions/questions.json @@ -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í" } } ], diff --git a/assets/layers/school/school.json b/assets/layers/school/school.json index b92590571c..2833aa576e 100644 --- a/assets/layers/school/school.json +++ b/assets/layers/school/school.json @@ -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 preschool) 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": "Doorstroomfinaliteit: 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": "Dubbele finaliteit: 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": "Arbeidsfinaliteit: 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": "Training type 1: trains elementary life skills to live in an institution. There is no intention to do a (paid) job after training", "nl": "Onderwijsvorm type 1: leert elementaire vaardigheden om te functioneren in een zorginstelling", "ca": "Entrenament tipus 1: 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": "Ausbildungstyp 1: vermittelt elementare Lebenskompetenzen für das Leben in einer Einrichtung. Es besteht nicht die Absicht, nach der Ausbildung eine (bezahlte) Arbeit aufzunehmen." + "de": "Ausbildungstyp 1: vermittelt elementare Lebenskompetenzen für das Leben in einer Einrichtung. Es besteht nicht die Absicht, nach der Ausbildung eine (bezahlte) Arbeit aufzunehmen.", + "cs": "Výuka typu 1: učí základní životní dovednosti pro život v instituci. Není cílem vykonávat (placenou) práci" } }, { @@ -482,7 +496,8 @@ "en": "Training type 2: prepares to work in an environment with extra care and facilities such as a sheltered workshop", "nl": "Onderwijsvorm type 2: leert vaardigheden om te werken in een een beschermde arbeidsomgeving zoals een maatwerkbedrijf", "ca": "Formació tipus 2: prepara per treballar en un entorn amb atenció especial i instal·lacions com un taller tutelat", - "de": "Ausbildungstyp 2: bereitet auf die Arbeit in einem Umfeld mit zusätzlicher Betreuung und Einrichtungen wie z.B. einer Behindertenwerkstatt vor" + "de": "Ausbildungstyp 2: bereitet auf die Arbeit in einem Umfeld mit zusätzlicher Betreuung und Einrichtungen wie z.B. einer Behindertenwerkstatt vor", + "cs": "Výuka typu 2: 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": "Training type 3: prepares for a job and a (more-or-less) independent life in society", "nl": "Onderwijsvorm type 3: leert vaardigheden voor een een job op de reguliere arbeidsmarkt en zelfstandig wonen", "ca": "Formació tipus 3: prepara per a un treball i una vida (més o menys) independent en la societat", - "de": "Ausbildungstyp 3: bereitet auf einen Arbeitsplatz und ein (mehr oder weniger) unabhängiges Leben in der Gesellschaft vor" + "de": "Ausbildungstyp 3: bereitet auf einen Arbeitsplatz und ein (mehr oder weniger) unabhängiges Leben in der Gesellschaft vor", + "cs": "Výuka typu 3: připravuje pro zaměstnání a (víceméně) nezávislý život ve společnosti" } }, { @@ -500,7 +516,8 @@ "en": "Training type 4: prepares for a job or continued education", "nl": "Onderwijsvorm type 4: leert vaardigheden voor een een job op de reguliere arbeidsmarkt of voor voortgezette studies", "ca": "Formació tipus 4: prepara per a un treball o educació continuada", - "de": "Ausbildungstyp 4: bereitet auf einen Arbeitsplatz oder eine weiterführende Ausbildung vor" + "de": "Ausbildungstyp 4: bereitet auf einen Arbeitsplatz oder eine weiterführende Ausbildung vor", + "cs": "Výuka typu 4: 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" } } ] diff --git a/assets/layers/souvenir_coin/souvenir_coin.json b/assets/layers/souvenir_coin/souvenir_coin.json index 70cbb1f7f7..1fc1ddd9e3 100644 --- a/assets/layers/souvenir_coin/souvenir_coin.json +++ b/assets/layers/souvenir_coin/souvenir_coin.json @@ -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.*" } diff --git a/assets/layers/sports_centre/sports_centre.json b/assets/layers/sports_centre/sports_centre.json index bd7c10b929..f6d3d6525c 100644 --- a/assets/layers/sports_centre/sports_centre.json +++ b/assets/layers/sports_centre/sports_centre.json @@ -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" } } ], diff --git a/assets/layers/stairs/stairs.json b/assets/layers/stairs/stairs.json index d0c9cbfc70..bd1da38995 100644 --- a/assets/layers/stairs/stairs.json +++ b/assets/layers/stairs/stairs.json @@ -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?" } }, { diff --git a/assets/layers/toilet/toilet.json b/assets/layers/toilet/toilet.json index aeced6e974..ff4ff196b3 100644 --- a/assets/layers/toilet/toilet.json +++ b/assets/layers/toilet/toilet.json @@ -954,48 +954,48 @@ "id": "toilet-changing_table:location" }, { - "labels": [ - "relevant-questions" - ], - "id": "toilet-handwashing", + "id": "toilet-supervised", "question": { - "en": "Do these toilets have a sink to wash your hands?", - "nl": "Hebben deze toiletten een lavabo om de handen te wassen?", - "de": "Gibt es hier ein Handwaschbecken?", - "es": "¿Estos baños tienen un lavabo para lavarse las manos?", - "fr": "Ces toilettes ont-ils un lavabo pour se laver les mains ?", - "da": "Har disse toiletter en håndvask til at vaske hænder?", - "ca": "Aquests lavabos tenen una pica per a rentar-se les mans?", - "cs": "Mají tyto toalety umyvadlo na mytí rukou?" + "en": "Is this toilets supervised by a person?", + "nl": "Is er toezicht op deze toilet?" + }, + "questionHint": { + "en": "This is typically a person tasked with keeping the toilets clean and collecting the fee", + "nl": "Deze persoon houdt typisch de toiletten proper en int het toiletgeld" }, "mappings": [ { - "if": "toilets:handwashing=yes", + "if": "supervised=yes", "then": { - "en": "These toilets have a sink to wash your hands", - "nl": "Deze toiletten hebben een lavabo waar men de handen kan wassen", - "de": "Die Toilette hat ein Handwaschbecken", - "es": "Estos baños tienen un lavabo para lavarse las manos", - "fr": "Ces toilettes ont un lavabo pour se laver les mains", - "da": "Dette toilet har en vask til at vaske dine hænder", - "ca": "Aquests lavabos tenen una pica per a rentar-se les mans", - "cs": "Tyto toalety mají umyvadlo na mytí rukou" + "en": "There is a person supervising these toilets during (most of) the opening hours", + "nl": "Er is een persoon die toezicht houdt op deze toiletten" } }, { - "if": "toilets:handwashing=no", + "if": "supervised=interval", "then": { - "en": "These toilets don't have a sink to wash your hands", - "nl": "Deze toiletten hebben geen lavabo waar men de handen kan wassen", - "de": "Die Toilette hat kein Handwaschbecken", - "es": "Estos baños no tienen un lavabo para lavarse las manos", - "fr": "Ces toilettes n'ont pas de lavabo pour se laver les mains", - "da": "Disse toiletter har ikke en vask til at vaske dine hænder", - "ca": "Aquests lavabos no tenen una pica per a rentar-se les mans", - "cs": "Tyto toalety nemají umyvadlo na mytí rukou" + "en": "There is a person supervising these toilets, but they are present only during certain times of the opening hours", + "nl": "Er is een persoon die toezicht houdt op deze toiletten, maar deze is slechts op enkele vaste momenten aanwezig" + } + }, + { + "if": "supervised=no", + "then": { + "en": "These toilets are not supervised", + "nl": "Er is geen persoon die toezicht houdt" } } - ] + ], + "condition": { + "and": [ + { + "or": [ + "access=yes", + "access=" + ] + } + ] + } }, { "id": "toilet-has-paper", @@ -1047,6 +1047,96 @@ ] } }, + { + "labels": [ + "relevant-questions" + ], + "id": "toilet-handwashing", + "question": { + "en": "Do these toilets have a sink to wash your hands?", + "nl": "Hebben deze toiletten een lavabo om de handen te wassen?", + "de": "Gibt es hier ein Handwaschbecken?", + "es": "¿Estos baños tienen un lavabo para lavarse las manos?", + "fr": "Ces toilettes ont-ils un lavabo pour se laver les mains ?", + "da": "Har disse toiletter en håndvask til at vaske hænder?", + "ca": "Aquests lavabos tenen una pica per a rentar-se les mans?", + "cs": "Mají tyto toalety umyvadlo na mytí rukou?" + }, + "mappings": [ + { + "if": "toilets:handwashing=yes", + "then": { + "en": "These toilets have a sink to wash your hands", + "nl": "Deze toiletten hebben een lavabo waar men de handen kan wassen", + "de": "Die Toilette hat ein Handwaschbecken", + "es": "Estos baños tienen un lavabo para lavarse las manos", + "fr": "Ces toilettes ont un lavabo pour se laver les mains", + "da": "Dette toilet har en vask til at vaske dine hænder", + "ca": "Aquests lavabos tenen una pica per a rentar-se les mans", + "cs": "Tyto toalety mají umyvadlo na mytí rukou" + } + }, + { + "if": "toilets:handwashing=no", + "then": { + "en": "These toilets don't have a sink to wash your hands", + "nl": "Deze toiletten hebben geen lavabo waar men de handen kan wassen", + "de": "Die Toilette hat kein Handwaschbecken", + "es": "Estos baños no tienen un lavabo para lavarse las manos", + "fr": "Ces toilettes n'ont pas de lavabo pour se laver les mains", + "da": "Disse toiletter har ikke en vask til at vaske dine hænder", + "ca": "Aquests lavabos no tenen una pica per a rentar-se les mans", + "cs": "Tyto toalety nemají umyvadlo na mytí rukou" + } + } + ] + }, + { + "id": "toilet-drying", + "question": { + "en": "Do these toilets have a device to dry your hands?", + "nl": "Hebben deze toiletten een apparaat om je handen te drogen?" + }, + "multiAnswer": true, + "mappings": [ + { + "if": "toilets:hands_drying=electric_hand_dryer", + "then": { + "en": "Electric hand dryers are available for drying hands.", + "nl": "Elektrische handdrogers zijn beschikbaar om handen te drogen." + } + }, + { + "if": "toilets:hands_drying=paper_towel", + "then": { + "en": "Paper towels are available for drying hands.", + "nl": "Papieren wegwerphanddoeken zijn beschikbaar om handen te drogen." + } + }, + { + "if": "toilets:hands_drying=towel_cabinet", + "then": { + "en": "A towel roll cabinet is available for drying hands", + "nl": "Een apparaat met een handdoekrol is beschikbaar om handen te drogen" + } + }, + { + "if": "toilets:hands_drying=towel", + "then": { + "en": "A fabric towel available to dry your hands.", + "nl": "Een stoffen handdoek is beschikbaar om handen te drogen." + } + }, + { + "if": "toilets:hands_drying=no", + "then": { + "en": "There are no hand drying facilities available.", + "nl": "Er zijn geen handdroogvoorzieningen beschikbaar." + } + } + ], + "condition": "toilets:handwashing=yes" + }, "description" ], "filter": [ diff --git a/assets/layers/tool_library/tool_library.json b/assets/layers/tool_library/tool_library.json index 6ff62eac73..c10fa51e7e 100644 --- a/assets/layers/tool_library/tool_library.json +++ b/assets/layers/tool_library/tool_library.json @@ -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": { diff --git a/assets/layers/tourism_accomodation/tourism_accomodation.json b/assets/layers/tourism_accomodation/tourism_accomodation.json index 213aedc891..ef8a1b5bf1 100644 --- a/assets/layers/tourism_accomodation/tourism_accomodation.json +++ b/assets/layers/tourism_accomodation/tourism_accomodation.json @@ -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" } }, { diff --git a/assets/layers/usersettings/usersettings.json b/assets/layers/usersettings/usersettings.json index ff58c0a479..b4b23bee09 100644 --- a/assets/layers/usersettings/usersettings.json +++ b/assets/layers/usersettings/usersettings.json @@ -359,7 +359,8 @@ "uk": "

Налаштування мапи

", "es": "

Configurar mapa

", "nl": "

Kaartvoorkeuren

", - "ca": "

Configura el mapa

" + "ca": "

Configura el mapa

", + "cs": "

Konfigurace mapy

" } }, { @@ -1267,7 +1268,8 @@ "render": { "en": "

Translating MapComplete

", "de": "

MapComplete übersetzen

", - "ca": "

Traduint MapComplete

" + "ca": "

Traduint MapComplete

", + "cs": "

Překládání MapComplete

" } }, { diff --git a/assets/layers/vending_machine/vending_machine.json b/assets/layers/vending_machine/vending_machine.json index c2a6140abb..3faa0e302a 100644 --- a/assets/layers/vending_machine/vending_machine.json +++ b/assets/layers/vending_machine/vending_machine.json @@ -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.*" }, diff --git a/assets/layers/waste_basket/waste_basket.json b/assets/layers/waste_basket/waste_basket.json index 2f8b8e7666..f008e220ec 100644 --- a/assets/layers/waste_basket/waste_basket.json +++ b/assets/layers/waste_basket/waste_basket.json @@ -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.*" } diff --git a/assets/layers/wayside_shrine/license_info.json b/assets/layers/wayside_shrine/license_info.json index 5ed910b3ea..336493a0b3 100644 --- a/assets/layers/wayside_shrine/license_info.json +++ b/assets/layers/wayside_shrine/license_info.json @@ -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" + ] } ] \ No newline at end of file diff --git a/assets/layers/wayside_shrine/wayside_cross.svg b/assets/layers/wayside_shrine/wayside_cross.svg new file mode 100644 index 0000000000..78c7341d98 --- /dev/null +++ b/assets/layers/wayside_shrine/wayside_cross.svg @@ -0,0 +1,25 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/assets/layers/wayside_shrine/wayside_cross.svg.license b/assets/layers/wayside_shrine/wayside_cross.svg.license new file mode 100644 index 0000000000..5e3616ed7f --- /dev/null +++ b/assets/layers/wayside_shrine/wayside_cross.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Geozeisig +SPDX-License-Identifier: CC0-1.0 \ No newline at end of file diff --git a/assets/layers/wayside_shrine/wayside_cross_example1.jpg b/assets/layers/wayside_shrine/wayside_cross_example1.jpg new file mode 100644 index 0000000000..c7ebdd5222 Binary files /dev/null and b/assets/layers/wayside_shrine/wayside_cross_example1.jpg differ diff --git a/assets/layers/wayside_shrine/wayside_cross_example1.jpg.license b/assets/layers/wayside_shrine/wayside_cross_example1.jpg.license new file mode 100644 index 0000000000..a13c1bdfc9 --- /dev/null +++ b/assets/layers/wayside_shrine/wayside_cross_example1.jpg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Przykuta +SPDX-License-Identifier: CC-BY-SA-4.0 \ No newline at end of file diff --git a/assets/layers/wayside_shrine/wayside_cross_example2.jpg b/assets/layers/wayside_shrine/wayside_cross_example2.jpg new file mode 100644 index 0000000000..959fc66158 Binary files /dev/null and b/assets/layers/wayside_shrine/wayside_cross_example2.jpg differ diff --git a/assets/layers/wayside_shrine/wayside_cross_example2.jpg.license b/assets/layers/wayside_shrine/wayside_cross_example2.jpg.license new file mode 100644 index 0000000000..83081ddf08 --- /dev/null +++ b/assets/layers/wayside_shrine/wayside_cross_example2.jpg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Markus B +SPDX-License-Identifier: CC0-1.0 \ No newline at end of file diff --git a/assets/layers/wayside_shrine/wayside_cross_example3.jpg b/assets/layers/wayside_shrine/wayside_cross_example3.jpg new file mode 100644 index 0000000000..c0c76d94c2 Binary files /dev/null and b/assets/layers/wayside_shrine/wayside_cross_example3.jpg differ diff --git a/assets/layers/wayside_shrine/wayside_cross_example3.jpg.license b/assets/layers/wayside_shrine/wayside_cross_example3.jpg.license new file mode 100644 index 0000000000..518bab6dc9 --- /dev/null +++ b/assets/layers/wayside_shrine/wayside_cross_example3.jpg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: HeinzLW +SPDX-License-Identifier: CC-BY-SA 3.0 \ No newline at end of file diff --git a/assets/layers/wayside_shrine/wayside_shrine.json b/assets/layers/wayside_shrine/wayside_shrine.json index 4bbbcc29ff..7b6de4a462 100644 --- a/assets/layers/wayside_shrine/wayside_shrine.json +++ b/assets/layers/wayside_shrine/wayside_shrine.json @@ -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 {name}" + "en": "The name of this {title()} is {name}" }, "mappings": [ { @@ -104,6 +164,38 @@ } ] }, + { + "id": "inscription", + "question": { + "en": "Is there an inscription?" + }, + "render": { + "en": "The inscription is {inscription}" + }, + "freeform": { + "key": "inscription" + }, + "mappings": [ + { + "if": "not:inscription=yes", + "then": { + "en": "No inscription" + } + }, + { + "if": "inscription=Ave Maria", + "then": { + "en": "The inscription is Ave Maria" + } + }, + { + "if": "inscription=I.N.R.I", + "then": { + "en": "The inscription is I.N.R.I." + } + } + ] + }, { "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 {denomination}" }, + "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" }, diff --git a/assets/svg/license_info.json b/assets/svg/license_info.json index 06bc3869d9..e94c29d518 100644 --- a/assets/svg/license_info.json +++ b/assets/svg/license_info.json @@ -451,12 +451,6 @@ "authors": [], "sources": [] }, - { - "path": "gear.svg", - "license": "TRIVIAL", - "authors": [], - "sources": [] - }, { "path": "gender_bi.svg", "license": "CC0-1.0", @@ -1103,6 +1097,17 @@ ], "sources": [] }, + { + "path": "snowflake.svg", + "license": "CC0-1.0", + "authors": [ + "Schnouf25", + "Razorbliss" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Snow_flake.svg" + ] + }, { "path": "speech_bubble.svg", "license": "CC-BY-4.0", diff --git a/assets/svg/snowflake.svg b/assets/svg/snowflake.svg new file mode 100644 index 0000000000..f90eb6ca1b --- /dev/null +++ b/assets/svg/snowflake.svg @@ -0,0 +1,41 @@ + + + + + + diff --git a/assets/svg/snowflake.svg.license b/assets/svg/snowflake.svg.license new file mode 100644 index 0000000000..9d76893189 --- /dev/null +++ b/assets/svg/snowflake.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Schnouf25; Razorbliss +SPDX-License-Identifier: CC0-1.0 \ No newline at end of file diff --git a/assets/themes/advertising/wall_painting.svg b/assets/themes/advertising/wall_painting.svg index fbf462c648..b1b1908a42 100644 --- a/assets/themes/advertising/wall_painting.svg +++ b/assets/themes/advertising/wall_painting.svg @@ -2,12 +2,12 @@ + inkscape:current-layer="layer1" + inkscape:showpageshadow="2" + inkscape:deskcolor="#d1d1d1"> + id="guide1027" + inkscape:locked="false" /> + id="guide1029" + inkscape:locked="false" /> + id="guide1031" + inkscape:locked="false" /> + id="guide1033" + inkscape:locked="false" /> + id="guide1035" + inkscape:locked="false" /> + id="guide1037" + inkscape:locked="false" /> + id="guide1039" + inkscape:locked="false" /> + id="guide1041" + inkscape:locked="false" /> @@ -86,26 +96,25 @@ + style="display:inline"> + rx="12.591385" /> + mask="url(#mask1309)" + transform="matrix(12.591377,0,0,12.591377,0.30278402,0.86556738)"> diff --git a/assets/themes/grb/grb.json b/assets/themes/grb/grb.json index 58409d3030..5508a22ed0 100644 --- a/assets/themes/grb/grb.json +++ b/assets/themes/grb/grb.json @@ -19,6 +19,50 @@ "shortDescription": { "nl": "Grb import helper tool" }, + "popup": [ + { + "id": "wikilink-needed", + "condition": "_description!~.*https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import.*", + "dismissable": false, + "title": { + "render": { + "en": "Profile mention obligated", + "nl": "Link op profiel verplicht" + } + }, + "body": [ + { + "render": { + "special": { + "type": "link", + "href": "https://www.openstreetmap.org/profile/edit", + "text": { + "en": "Edit your user profile", + "nl": "Pas je profiel aan" + } + }, + "after": { + "en": "to include the link https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import", + "nl": " en voeg deze link toe: https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import" + } + } + }, + { + "id": "reload_profile", + "render": { + "special": { + "type": "login_button", + "force": "yes", + "message": { + "en": "Reload your profile", + "nl": "Herlaad je profiel" + } + } + } + } + ] + } + ], "icon": "./assets/themes/grb/logo.svg", "startZoom": 9, "startLat": 51.0249, diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.json index c850ff8d18..335c9ba802 100644 --- a/assets/themes/mapcomplete-changes/mapcomplete-changes.json +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.json @@ -612,6 +612,10 @@ { "if": "theme=width", "then": "./assets/themes/width/icon.svg" + }, + { + "if": "theme=winter_service", + "then": "./assets/svg/snowflake.svg" } ] } diff --git a/assets/themes/street_lighting/street_lighting.json b/assets/themes/street_lighting/street_lighting.json index a181a6e1cf..133d3536f0 100644 --- a/assets/themes/street_lighting/street_lighting.json +++ b/assets/themes/street_lighting/street_lighting.json @@ -211,184 +211,109 @@ "allowMove": false }, { - "id": "all_streets", - "isCounted": false, - "name": { - "en": "All streets", - "nl": "Alle straten", - "ru": "Все улицы", - "zh_Hant": "所有道路", - "hu": "Minden utca", - "de": "Alle Straßen", - "ca": "Tots els carrers", - "es": "Todas las calles", - "fr": "Toutes les rues", - "nb_NO": "Alle gater", - "da": "Alle gader", - "pa_PK": "ساریاں سڑکاں", - "cs": "Všechny ulice", - "it": "Tutte le strade", - "pl": "Wszystkie ulice", - "ko": "모든 거리" - }, - "source": { - "osmTags": { - "and": [ - "highway!=", - "service!=driveway", - "highway!=platform" - ] - } - }, - "minzoom": 18, - "title": { - "render": { - "en": "Street", - "nl": "Straat", - "ru": "Улица", - "zh_Hant": "照明", - "hu": "Utca", - "de": "Straße", - "ca": "Carrer", - "nb_NO": "Gate", - "fr": "Rue", - "da": "Gade", - "pa_PK": "سڑک", - "es": "Calle", - "cs": "Ulice", - "eu": "Kalea", - "it": "Strada", - "pl": "Ulica", - "ko": "거리" - }, - "mappings": [ + "builtin": "all_streets", + "override": { + "tagRenderings+": [ { - "if": "name~*", - "then": "{name}" - } - ] - }, - "tagRenderings": [ - "images", - { - "id": "lit", - "question": { - "en": "Is this street lit?", - "nl": "Is deze straat verlicht?", - "zh_Hant": "這道路有照明嗎?", - "hu": "Ki van-e világítva ez az utca?", - "de": "Ist diese Straße beleuchtet?", - "nb_NO": "Er denne gaten belyst?", - "fr": "Cette rue est-elle éclairée ?", - "da": "Er denne gade oplyst?", - "ca": "Aquest carrer està il·luminat?", - "es": "¿Está iluminada esta calle?", - "cs": "Je tato ulice osvětlená?", - "it": "Questa strada è illuminata?", - "pl": "Czy ta ulica jest oświetlona?", - "ko": "이 거리는 밝나요?" - }, - "mappings": [ - { - "if": "lit=yes", - "then": { - "en": "This street is lit", - "nl": "Deze straat is verlicht", - "zh_Hant": "這道路有照明", - "hu": "Ez az utca ki van világítva", - "de": "Diese Straße ist beleuchtet", - "es": "Esta calle está iluminada", - "nb_NO": "Denne gaten er belyst", - "fr": "Cette rue est éclairée", - "da": "Denne gade er oplyst", - "ca": "Aquest carrer està il·luminat", - "cs": "Tato ulice je osvětlená", - "it": "Questa strada è illuminata", - "pl": "Ta ulica jest oświetlona", - "ko": "이 거리는 밝습니다" - } + "id": "lit", + "question": { + "en": "Is this street lit?", + "nl": "Is deze straat verlicht?", + "zh_Hant": "這道路有照明嗎?", + "hu": "Ki van-e világítva ez az utca?", + "de": "Ist diese Straße beleuchtet?", + "nb_NO": "Er denne gaten belyst?", + "fr": "Cette rue est-elle éclairée ?", + "da": "Er denne gade oplyst?", + "ca": "Aquest carrer està il·luminat?", + "es": "¿Está iluminada esta calle?", + "cs": "Je tato ulice osvětlená?", + "it": "Questa strada è illuminata?", + "pl": "Czy ta ulica jest oświetlona?", + "ko": "이 거리는 밝나요?" }, - { - "if": "lit=no", - "then": { - "en": "This street is not lit", - "nl": "Deze straat is niet verlicht", - "zh_Hant": "這道路沒有照明", - "hu": "Ez az utca nincs kivilágítva", - "de": "Diese Straße ist nicht beleuchtet", - "es": "Esta calle no está iluminada", - "nb_NO": "Denne gaten er ikke belyst", - "fr": "Cette rue n’est pas éclairée", - "da": "Denne gade er ikke oplyst", - "ca": "Aquest carrer no està il·luminat", - "cs": "Tato ulice není osvětlená", - "it": "Questa strada non è illuminata", - "pl": "Ta ulica nie jest oświetlona", - "ko": "이 거리는 밝지 않습니다" - } - }, - { - "if": "lit=sunset-sunrise", - "then": { - "en": "This street is lit at night", - "nl": "Deze straat is 's nachts verlicht", - "zh_Hant": "這道路晚上有照明", - "hu": "Ez az utca éjjel ki van világítva", - "de": "Diese Straße ist nachts beleuchtet", - "nb_NO": "Denne gaten er belyst nattestid", - "fr": "Cette rue est éclairée la nuit", - "da": "Denne gade er oplyst om natten", - "ca": "Aquest carrer està il·luminat per la nit", - "es": "Esta calle está iluminada por la noche", - "cs": "Tato ulice je v noci osvětlená", - "it": "Questa strada è illuminata di sera", - "pl": "Ta ulica jest oświetlona w nocy", - "ko": "이 거리는 밤에 밝습니다" - }, - "hideInAnswer": true - }, - { - "if": "lit=24/7", - "then": { - "en": "This street is lit 24/7", - "nl": "Deze straat is 24/7 verlicht", - "zh_Hant": "這道路 24/7 有照明", - "hu": "Ez az utca éjjel-nappal ki van világítva", - "de": "Diese Straße ist durchgehend beleuchtet", - "nb_NO": "Denne gaten er belyst døgnet rundt", - "fr": "Cette rue est éclairée en permanence", - "da": "Denne gade er oplyst 24/7", - "ca": "Aquest carrer està il·luminat 24/7", - "es": "Esta calle está iluminada 24/7", - "cs": "Tato ulice je osvětlena 24/7", - "it": "Questa strada è illuminata 24 ore su 24", - "pl": "Ta ulica jest oświetlona 24/7", - "ko": "이 거리는 24시간 밝습니다" - } - } - ] - } - ], - "allowSplit": true, - "pointRendering": null, - "lineRendering": [ - { - "color": { - "render": "#a9a9a9", "mappings": [ { - "if": "lit=no", - "then": "#303030" + "if": "lit=yes", + "then": { + "en": "This street is lit", + "nl": "Deze straat is verlicht", + "zh_Hant": "這道路有照明", + "hu": "Ez az utca ki van világítva", + "de": "Diese Straße ist beleuchtet", + "es": "Esta calle está iluminada", + "nb_NO": "Denne gaten er belyst", + "fr": "Cette rue est éclairée", + "da": "Denne gade er oplyst", + "ca": "Aquest carrer està il·luminat", + "cs": "Tato ulice je osvětlená", + "it": "Questa strada è illuminata", + "pl": "Ta ulica jest oświetlona", + "ko": "이 거리는 밝습니다" + } }, { - "if": "lit=yes", - "then": "#ff0" + "if": "lit=no", + "then": { + "en": "This street is not lit", + "nl": "Deze straat is niet verlicht", + "zh_Hant": "這道路沒有照明", + "hu": "Ez az utca nincs kivilágítva", + "de": "Diese Straße ist nicht beleuchtet", + "es": "Esta calle no está iluminada", + "nb_NO": "Denne gaten er ikke belyst", + "fr": "Cette rue n’est pas éclairée", + "da": "Denne gade er ikke oplyst", + "ca": "Aquest carrer no està il·luminat", + "cs": "Tato ulice není osvětlená", + "it": "Questa strada non è illuminata", + "pl": "Ta ulica nie jest oświetlona", + "ko": "이 거리는 밝지 않습니다" + } + }, + { + "if": "lit=sunset-sunrise", + "then": { + "en": "This street is lit at night", + "nl": "Deze straat is 's nachts verlicht", + "zh_Hant": "這道路晚上有照明", + "hu": "Ez az utca éjjel ki van világítva", + "de": "Diese Straße ist nachts beleuchtet", + "nb_NO": "Denne gaten er belyst nattestid", + "fr": "Cette rue est éclairée la nuit", + "da": "Denne gade er oplyst om natten", + "ca": "Aquest carrer està il·luminat per la nit", + "es": "Esta calle está iluminada por la noche", + "cs": "Tato ulice je v noci osvětlená", + "it": "Questa strada è illuminata di sera", + "pl": "Ta ulica jest oświetlona w nocy", + "ko": "이 거리는 밤에 밝습니다" + }, + "hideInAnswer": true + }, + { + "if": "lit=24/7", + "then": { + "en": "This street is lit 24/7", + "nl": "Deze straat is 24/7 verlicht", + "zh_Hant": "這道路 24/7 有照明", + "hu": "Ez az utca éjjel-nappal ki van világítva", + "de": "Diese Straße ist durchgehend beleuchtet", + "nb_NO": "Denne gaten er belyst døgnet rundt", + "fr": "Cette rue est éclairée en permanence", + "da": "Denne gade er oplyst 24/7", + "ca": "Aquest carrer està il·luminat 24/7", + "es": "Esta calle está iluminada 24/7", + "cs": "Tato ulice je osvětlena 24/7", + "it": "Questa strada è illuminata 24 ore su 24", + "pl": "Ta ulica jest oświetlona 24/7", + "ko": "이 거리는 24시간 밝습니다" + } } ] } - } - ], - "allowMove": false + ] + } } ] -} +} \ No newline at end of file diff --git a/assets/themes/wayside_shrines/wayside_shrines.json b/assets/themes/wayside_shrines/wayside_shrines.json index 6894fd1ed8..fc5620bafc 100644 --- a/assets/themes/wayside_shrines/wayside_shrines.json +++ b/assets/themes/wayside_shrines/wayside_shrines.json @@ -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": [ diff --git a/assets/themes/winter_service/winter_service.json b/assets/themes/winter_service/winter_service.json new file mode 100644 index 0000000000..52dc08a6ff --- /dev/null +++ b/assets/themes/winter_service/winter_service.json @@ -0,0 +1,132 @@ +{ + "credits": "Robin van der Linde", + "credits:uid": 5093765, + "id": "winter_service", + "title": { + "en": "Winter Service" + }, + "icon": "./assets/svg/snowflake.svg", + "layers": [ + { + "id": "serviced_streets", + "name": { + "en": "Serviced streets" + }, + "description": { + "en": "Streets that have some form of winter service" + }, + "source": { + "osmTags": { + "and": [ + "highway!=", + "service!=driveway", + "highway!=platform", + { + "or": [ + "winter_service=yes", + "winter_service=limited" + ] + } + ] + } + }, + "minzoom": 16, + "title": { + "render": { + "en": "Serviced street" + }, + "mappings": [ + { + "if": "name~*", + "then": "{name}" + } + ] + }, + "lineRendering": [ + { + "color": { + "mappings": [ + { + "if": "winter_service=yes", + "then": "#00ff00" + }, + { + "if": "winter_service=limited", + "then": "#ffff00" + }, + { + "if": "winter_service=no", + "then": "#ff0000" + } + ] + } + } + ], + "pointRendering": null, + "allowMove": false, + "tagRenderings": [] + }, + { + "builtin": "all_streets", + "override": { + "lineRendering": [ + { + "color": { + "mappings": [ + { + "if": "winter_service=yes", + "then": "#00ff00" + }, + { + "if": "winter_service=limited", + "then": "#ffff00" + }, + { + "if": "winter_service=no", + "then": "#ff0000" + } + ] + } + } + ] + } + } + ], + "description": { + "en": "A map showing roads and whether they're cleared in winter" + }, + "overrideAll": { + "tagRenderings+": [ + { + "id": "winter_service", + "question": { + "en": "Is this road serviced (e.g. cleared of snow) in winter?" + }, + "mappings": [ + { + "if": "winter_service=yes", + "then": { + "en": "This road is serviced in winter" + }, + "icon": "snowflake:green" + }, + { + "if": "winter_service=limited", + "then": { + "en": "This road is serviced in winter, but only to a limited extent. This is often signposted as well." + }, + "icon": "snowflake:yellow" + }, + { + "if": "winter_service=no", + "then": { + "en": "This road is not serviced in winter" + }, + "icon": "snowflake:red" + } + ] + } + ] + }, + "hideFromOverview": true +} \ No newline at end of file diff --git a/langs/layers/ca.json b/langs/layers/ca.json index 64a94bc08a..82e2bfb2d2 100644 --- a/langs/layers/ca.json +++ b/langs/layers/ca.json @@ -357,6 +357,12 @@ "render": "Telefèric {name}" } }, + "all_streets": { + "name": "Tots els carrers", + "title": { + "render": "Carrer" + } + }, "ambulancestation": { "description": "Una estició d'abulàncies és una àrea per a emmagatzemar ambulàncies, equipament mèdic, equips de protecció personal i altres subministraments mèdics.", "name": "Mapa d'estacions d'ambulàncies", @@ -2339,18 +2345,6 @@ "question": "Quantes persones poden quedar-se aquí?", "render": "{capacity:persons} persones poden quedar-se aquí" }, - "fee": { - "mappings": { - "0": { - "then": "El càmping és gratuït" - }, - "1": { - "then": "Aquí es cobra una tarifa." - } - }, - "question": "Aquí es cobra alguna tarifa?", - "render": "S'ha de pagar una tarifa de {charge} aquí" - }, "group_only": { "mappings": { "0": { @@ -3814,23 +3808,6 @@ }, "question": "Aquest creuament té superfície podotàctil?" }, - "crossing-type": { - "mappings": { - "0": { - "then": "Creuament, sense semàfors" - }, - "1": { - "then": "Creuament amb semàfors" - }, - "2": { - "then": "Pas de zebra" - }, - "3": { - "then": "Creuament sense senyalitzar" - } - }, - "question": "Quin tipus de creuament és aquest?" - }, "crossing-vibration": { "mappings": { "0": { @@ -5245,7 +5222,7 @@ } }, "title": { - "render": "Entrada" + "render": "Entrada {ref}" } }, "etymology": { diff --git a/langs/layers/cs.json b/langs/layers/cs.json index 4d19e10c0d..5f2374ac0f 100644 --- a/langs/layers/cs.json +++ b/langs/layers/cs.json @@ -357,6 +357,12 @@ "render": "Dráha {name}" } }, + "all_streets": { + "name": "Všechny ulice", + "title": { + "render": "Ulice" + } + }, "ambulancestation": { "description": "Stanice záchranné služby je prostor pro umístění sanitních vozidel, zdravotnického vybavení, osobních ochranných prostředků a dalšího zdravotnického materiálu.", "name": "Mapa stanic rychlé záchranné služby", @@ -2396,18 +2402,6 @@ "question": "Kolik lidí tu může pobývat?", "render": "Může tu pobývat {capacity:persons} lidí" }, - "fee": { - "mappings": { - "0": { - "then": "Kempování je zdarma" - }, - "1": { - "then": "Platí se tu poplatek." - } - }, - "question": "Platí se tu poplatek?", - "render": "Platí se tu poplatek {charge}" - }, "group_only": { "mappings": { "0": { @@ -3842,23 +3836,6 @@ }, "question": "Má tento přechod hmatovou dlažbu?" }, - "crossing-type": { - "mappings": { - "0": { - "then": "Přechod bez světelné signalizace" - }, - "1": { - "then": "Přechod se světelnou signalizací" - }, - "2": { - "then": "Zebra přechod" - }, - "3": { - "then": "Přechod bez označení přechodu" - } - }, - "question": "Co je to za přechod?" - }, "crossing-vibration": { "mappings": { "0": { @@ -4748,6 +4725,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)}" @@ -5049,7 +5037,7 @@ } }, "title": { - "render": "Vchod" + "render": "Vchod {ref}" } }, "etymology": { @@ -5302,6 +5290,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", @@ -5566,6 +5597,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" }, @@ -5682,6 +5716,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?" @@ -7559,6 +7596,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?", @@ -7600,6 +7640,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": { @@ -7698,6 +7746,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ě?", @@ -7714,12 +7765,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": "{name}" + } + }, + "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 {operator}" } }, "title": { @@ -7728,6 +7836,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": { @@ -8284,6 +8422,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": { @@ -8746,6 +8905,9 @@ "presets": { "0": { "title": "základní nebo střední škola" + }, + "1": { + "title": "mateřská škola" } }, "tagRenderings": { @@ -8797,7 +8959,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": "Výuka typu 1: učí základní životní dovednosti pro život v instituci. Není cílem vykonávat (placenou) práci" + }, + "1": { + "then": "Výuka typu 2: 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": "Výuka typu 3: připravuje pro zaměstnání a (víceméně) nezávislý život ve společnosti" + }, + "3": { + "then": "Výuka typu 4: připravuje pro zaměstnání a pokračující vzdělávání" + } + }, + "question": "Pro co tato škola žáky učí?" }, "pedagogy": { "mappings": { @@ -8845,6 +9059,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": { @@ -9275,6 +9545,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": { @@ -9496,12 +9790,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ů" }, @@ -9517,6 +9952,12 @@ "41": { "then": "Šerm" }, + "42": { + "then": "Pozemní hokej" + }, + "43": { + "then": "Fitness" + }, "45": { "then": "Florbal" }, @@ -9538,6 +9979,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" }, @@ -9568,11 +10042,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" } } } @@ -9596,7 +10097,8 @@ "4": { "then": "Nejedná se o eskalátor" } - } + }, + "question": "Jedná se o eskalátor?" }, "handrail": { "mappings": { @@ -10353,18 +10855,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": { @@ -10965,6 +11495,9 @@ "title-editing": { "render": "

Úprava nastavení

" }, + "title-map": { + "render": "

Konfigurace mapy

" + }, "title-privacy-legal": { "render": "

Soukromí a právní záležitosti

" }, @@ -11004,6 +11537,9 @@ } } }, + "translations-title": { + "render": "

Překládání MapComplete

" + }, "verified-mastodon": { "mappings": { "0": { @@ -11039,6 +11575,9 @@ "12": { "question": "Prodej vajec" }, + "13": { + "question": "Prodej zmrzliny" + }, "14": { "question": "Prodej sýrů" }, @@ -11142,6 +11681,9 @@ "0": { "1": "duše na kolo" }, + "1": { + "1": "osvětlení kola" + }, "2": { "1": "kondom" } @@ -11206,6 +11748,9 @@ "11": { "then": "Prodává vejce" }, + "12": { + "then": "Prodává zmrzlinu" + }, "13": { "then": "Prodává sýr" }, @@ -11374,6 +11919,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" } } }, @@ -11429,6 +11980,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" } diff --git a/langs/layers/cy.json b/langs/layers/cy.json index aed6d66f84..5aaca51be8 100644 --- a/langs/layers/cy.json +++ b/langs/layers/cy.json @@ -356,7 +356,7 @@ "entrance": { "name": "Mynedfa", "title": { - "render": "Mynedfa" + "render": "Mynedfa {ref}" } }, "extinguisher": { diff --git a/langs/layers/da.json b/langs/layers/da.json index c784113f9f..4e678fa6b4 100644 --- a/langs/layers/da.json +++ b/langs/layers/da.json @@ -24,6 +24,12 @@ "render": "Kendt adresse" } }, + "all_streets": { + "name": "Alle gader", + "title": { + "render": "Gade" + } + }, "ambulancestation": { "description": "En ambulancestation er et område til opbevaring af ambulancekøretøjer, medicinsk udstyr, personlige værnemidler og andre medicinske forsyninger.", "name": "Kort over ambulancestationer", @@ -1564,7 +1570,7 @@ } }, "title": { - "render": "Indgang" + "render": "Indgang {ref}" } }, "etymology": { diff --git a/langs/layers/de.json b/langs/layers/de.json index b122b8aedf..63239fdfbe 100644 --- a/langs/layers/de.json +++ b/langs/layers/de.json @@ -357,6 +357,12 @@ "render": "Seilbahn {name}" } }, + "all_streets": { + "name": "Alle Straßen", + "title": { + "render": "Straße" + } + }, "ambulancestation": { "description": "Eine Rettungswache ist ein Ort, an dem Rettungsfahrzeuge, medizinische Ausrüstung, persönliche Schutzausrüstung und anderes medizinisches Material untergebracht sind.", "name": "Rettungswachen", @@ -2291,17 +2297,24 @@ "question": "Wie viele Personen können hier übernachten?", "render": "Hier können {capacity:persons} Personen übernachten" }, + "charge_day": { + "question": "Was ist die Gebühr pro Tag?", + "render": "Gebühr pro Tag: {charge}" + }, + "charge_person_day": { + "question": "Was ist die Gebühr pro Person pro Tag?", + "render": "Gebühr pro Person pro Tag: {charge}" + }, "fee": { "mappings": { "0": { "then": "Der Zeltplatz ist kostenlos" }, "1": { - "then": "Hier wird eine Gebühr erhoben." + "then": "Es gibt eine Gebühr." } }, - "question": "Wird hier eine Gebühr erhoben?", - "render": "Hier wird eine Gebühr von {charge} erhoben" + "question": "Gibt es hier eine Gebühr?" }, "group_only": { "mappings": { @@ -3766,23 +3779,6 @@ }, "question": "Gibt es an dieser Kreuzung ein Blindenleitsystem?" }, - "crossing-type": { - "mappings": { - "0": { - "then": "Kreuzungen ohne Ampeln" - }, - "1": { - "then": "Kreuzungen mit Ampeln" - }, - "2": { - "then": "Zebrastreifen" - }, - "3": { - "then": "Kreuzung ohne Kreuzungsmarkierungen" - } - }, - "question": "Was ist das für eine Kreuzung?" - }, "crossing-vibration": { "mappings": { "0": { @@ -5204,7 +5200,7 @@ } }, "title": { - "render": "Eingang" + "render": "Eingang {ref}" } }, "etymology": { diff --git a/langs/layers/en.json b/langs/layers/en.json index f68d3443fe..6f9771553c 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -357,6 +357,13 @@ "render": "Aerialway {name}" } }, + "all_streets": { + "description": "Layer with (almost) all streets", + "name": "All streets", + "title": { + "render": "Street" + } + }, "ambulancestation": { "description": "An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.", "name": "Map of ambulance stations", @@ -2407,17 +2414,24 @@ "question": "How many people can stay here?", "render": "{capacity:persons} people can stay here" }, + "charge_day": { + "question": "What is the charge per day?", + "render": "Charge per day: {charge}" + }, + "charge_person_day": { + "question": "What is the charge per person per day?", + "render": "Charge per person per day: {charge}" + }, "fee": { "mappings": { "0": { "then": "The campsite is free of charge" }, "1": { - "then": "A fee is charged here." + "then": "There is a fee." } }, - "question": "Is a fee charged here?", - "render": "A fee of {charge} should be paid for here" + "question": "Is there a fee?" }, "group_only": { "mappings": { @@ -3885,27 +3899,13 @@ }, "2": { "then": "This crossing has tactile paving, but is not correct" + }, + "3": { + "then": "This crrosing has tactile paving, but only on one side" } }, "question": "Does this crossing have tactile paving?" }, - "crossing-type": { - "mappings": { - "0": { - "then": "Crossing, without traffic lights" - }, - "1": { - "then": "Crossing with traffic signals" - }, - "2": { - "then": "Zebra crossing" - }, - "3": { - "then": "Crossing without crossing markings" - } - }, - "question": "What kind of crossing is this?" - }, "crossing-vibration": { "mappings": { "0": { @@ -3967,6 +3967,20 @@ }, "question": "What kind of markings does this crossing have?", "render": "This crossing has {crossing:markings} markings" + }, + "signals": { + "mappings": { + "0": { + "then": "There are no traffic signals at this crossing" + }, + "1": { + "then": "There are traffic signals at this crossing" + }, + "2": { + "then": "There are traffic signals at this crossing" + } + }, + "question": "Are there traffic signals at this crossing?" } }, "title": { @@ -5024,6 +5038,18 @@ "question": "What is the width of this elevator?", "render": "This elevator has a width of {canonical(width)}" }, + "handrail": { + "mappings": { + "0": { + "then": "This elevator has a handrail in the cabin" + }, + "1": { + "then": "This elevator does not have a handrail" + } + }, + "question": "Is there a handrail in the cabin?", + "questionHint": "A handrail can help people with reduced mobility to get in or out of the elevator" + }, "operational_status": { "mappings": { "0": { @@ -5321,13 +5347,22 @@ "question": "What is the height of this kerb?", "render": "The kerb height of this door is {kerb:height}" }, + "ref": { + "mappings": { + "0": { + "then": "No reference number" + } + }, + "question": "Does this door have a reference number?", + "render": "This door has {ref} as reference number" + }, "width": { "question": "What is the width of this door/entrance?", "render": "This door has a width of {canonical(width)}" } }, "title": { - "render": "Entrance" + "render": "Entrance {ref}" } }, "etymology": { @@ -6385,6 +6420,42 @@ } }, "tagRenderings": { + "ele": { + "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" + }, + "name": { + "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}" + }, + "ref": { + "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}" + }, "type": { "mappings": { "0": { @@ -7937,6 +8008,9 @@ }, "1": { "then": "You can't send packages from this parcel locker" + }, + "2": { + "then": "You can send packages from this parcel locker, but only for returns" } }, "question": "Can you send packages from this parcel locker?" @@ -12133,6 +12207,26 @@ "question": "How much does one have to pay for these toilets?", "render": "The fee is {charge}" }, + "toilet-drying": { + "mappings": { + "0": { + "then": "Electric hand dryers are available for drying hands." + }, + "1": { + "then": "Paper towels are available for drying hands." + }, + "2": { + "then": "A towel roll cabinet is available for drying hands" + }, + "3": { + "then": "A fabric towel available to dry your hands." + }, + "4": { + "then": "There are no hand drying facilities available." + } + }, + "question": "Do these toilets have a device to dry your hands?" + }, "toilet-handwashing": { "mappings": { "0": { @@ -12162,6 +12256,21 @@ } } }, + "toilet-supervised": { + "mappings": { + "0": { + "then": "There is a person supervising these toilets during (most of) the opening hours" + }, + "1": { + "then": "There is a person supervising these toilets, but they are present only during certain times of the opening hours" + }, + "2": { + "then": "These toilets are not supervised" + } + }, + "question": "Is this toilets supervised by a person?", + "questionHint": "This is typically a person tasked with keeping the toilets clean and collecting the fee" + }, "toilets-changing-table": { "mappings": { "0": { @@ -13904,8 +14013,8 @@ } }, "wayside_shrine": { - "description": "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.", - "name": "Wayside Shrines", + "description": "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.", + "name": "Wayside Shrines and Crosses", "presets": { "0": { "description": "A wayside shrine typically shows a religious depiction, usually placed by a road or pathway. ", @@ -13914,6 +14023,14 @@ "1": { "description": "A wayside shrine typically shows a religious depiction, usually placed by a road or pathway. This shrine is mounted on a wall", "title": "a wayside shrine mounted on a wall" + }, + "2": { + "description": "A wayside cross is a christian cross that is placed by a road or pathway.", + "title": "a wayside cross" + }, + "3": { + "description": "A wayside cross is a christian cross that is placed by a road or pathway. This cross is mounted on a wall", + "title": "a wayside cross mounted on a wall" } }, "tagRenderings": { @@ -13950,7 +14067,7 @@ "then": "The religious subdenomination is evangelical" } }, - "question": "What's the Christian denomination of the shrine?", + "question": "What's the Christian denomination of this {title()}?", "render": "The religious denomination is {denomination}" }, "denomination_jewish": { @@ -13990,6 +14107,21 @@ "question": "What's the denomination of this shrine?", "render": "The denomination of this shrine is {denomination}" }, + "inscription": { + "mappings": { + "0": { + "then": "No inscription" + }, + "1": { + "then": "The inscription is Ave Maria" + }, + "2": { + "then": "The inscription is I.N.R.I." + } + }, + "question": "Is there an inscription?", + "render": "The inscription is {inscription}" + }, "religion": { "mappings": { "0": { @@ -14035,12 +14167,19 @@ "then": "This shrine does not have a name" } }, - "question": "What's the name of this shrine?", - "render": "The name of this shrine is {name}" + "question": "What's the name of this {title()}?", + "render": "The name of this {title()} is {name}" } }, "title": { - "render": "Wayside Shrine {name}" + "mappings": { + "0": { + "then": "Wayside Shrine {name}" + }, + "1": { + "then": "Wayside Cross {name}" + } + } } }, "windturbine": { diff --git a/langs/layers/es.json b/langs/layers/es.json index 6ece3aa66f..8507b389ed 100644 --- a/langs/layers/es.json +++ b/langs/layers/es.json @@ -339,6 +339,12 @@ "render": "Teleférico {name}" } }, + "all_streets": { + "name": "Todas las calles", + "title": { + "render": "Calle" + } + }, "ambulancestation": { "description": "Una estación de ambulancias es un área para el almacenamiento de vehículos de ambulancia, equipo médico, equipo de protección personal y otros suministros médicos.", "name": "Mapa de estaciones de ambulancias", @@ -3537,23 +3543,6 @@ }, "question": "¿Este cruce tiene pavimento táctil?" }, - "crossing-type": { - "mappings": { - "0": { - "then": "Cruce, sin semáforos" - }, - "1": { - "then": "Cruce con semáforos" - }, - "2": { - "then": "Paso de peatones" - }, - "3": { - "then": "Cruce sin marcas de cruce" - } - }, - "question": "¿Qué tipo de cruce es este?" - }, "crossing-vibration": { "mappings": { "0": { @@ -4903,7 +4892,7 @@ } }, "title": { - "render": "Entrada" + "render": "Entrada {ref}" } }, "etymology": { diff --git a/langs/layers/eu.json b/langs/layers/eu.json index 99df5306d9..fd964cae02 100644 --- a/langs/layers/eu.json +++ b/langs/layers/eu.json @@ -89,6 +89,11 @@ } } }, + "all_streets": { + "title": { + "render": "Kalea" + } + }, "artwork": { "description": "Estatuen, bustoen, graffitien eta mundu osoko beste artelan batzuen mapa irekia", "name": "Artelanak", diff --git a/langs/layers/fr.json b/langs/layers/fr.json index fa7aace690..125dfd1a0e 100644 --- a/langs/layers/fr.json +++ b/langs/layers/fr.json @@ -262,6 +262,12 @@ } } }, + "all_streets": { + "name": "Toutes les rues", + "title": { + "render": "Rue" + } + }, "ambulancestation": { "description": "Une station d’ambulance est un lieu où sont stockés les véhicules d’urgence ainsi que de l’équipement médical.", "name": "Couche des ambulances", @@ -2528,23 +2534,6 @@ }, "question": "Est-ce que ce passage piéton a une surface podotactile ?" }, - "crossing-type": { - "mappings": { - "0": { - "then": "Passage piéton, sans feux de signalisation" - }, - "1": { - "then": "Passage piéton avec des feux de signalisation" - }, - "2": { - "then": "Passage piéton" - }, - "3": { - "then": "Passage piéton sans marquages" - } - }, - "question": "Quel type de passage piéton est-ce ?" - }, "crossing-vibration": { "mappings": { "0": { @@ -3467,7 +3456,7 @@ } }, "title": { - "render": "Entrée" + "render": "Entrée {ref}" } }, "etymology": { diff --git a/langs/layers/hu.json b/langs/layers/hu.json index 365217744c..40c9399e8b 100644 --- a/langs/layers/hu.json +++ b/langs/layers/hu.json @@ -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", diff --git a/langs/layers/it.json b/langs/layers/it.json index 992bd9b5aa..182774792f 100644 --- a/langs/layers/it.json +++ b/langs/layers/it.json @@ -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", diff --git a/langs/layers/ko.json b/langs/layers/ko.json index 985fa90fb6..defa004a78 100644 --- a/langs/layers/ko.json +++ b/langs/layers/ko.json @@ -17,6 +17,12 @@ } } }, + "all_streets": { + "name": "모든 거리", + "title": { + "render": "거리" + } + }, "artwork": { "description": "전 세계의 여러 조각상과 예술 작품들 알려주는 오픈 맵 입니다" }, diff --git a/langs/layers/nb_NO.json b/langs/layers/nb_NO.json index 0556bc48bc..bceebd3c75 100644 --- a/langs/layers/nb_NO.json +++ b/langs/layers/nb_NO.json @@ -20,6 +20,12 @@ "render": "Kjent adresse" } }, + "all_streets": { + "name": "Alle gater", + "title": { + "render": "Gate" + } + }, "ambulancestation": { "name": "Kart over ambulansestasjoner", "presets": { diff --git a/langs/layers/nl.json b/langs/layers/nl.json index adb6781927..27d6bb491b 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -11,7 +11,8 @@ "0": { "then": "Geen adresgegevens bekend" } - } + }, + "render": "{addr:street} {addr:housenumber}{addr:unit}" }, "housenumber": { "mappings": { @@ -343,6 +344,13 @@ "render": "Kabelbaan {name}" } }, + "all_streets": { + "description": "Laag met (bijna) alle straten", + "name": "Alle straten", + "title": { + "render": "Straat" + } + }, "ambulancestation": { "description": "Een ambulancestation is een plaats waar ambulances, medisch materiaal, persoonlijk beschermingsmateriaal en aanverwanten worden bewaard.", "name": "Kaart van ambulancestations", @@ -2097,6 +2105,8 @@ } }, "building": { + "description": "Alle gebouwen", + "name": "Gebouwen", "tagRenderings": { "architecture": { "mappings": { @@ -2203,7 +2213,13 @@ "then": "Empirestijl" } } + }, + "construction_date": { + "render": "Gebouwd in {construction_date}" } + }, + "title": { + "render": "Gebouw" } }, "cafe_pub": { @@ -3693,27 +3709,13 @@ }, "2": { "then": "Deze oversteekplaats heeft een geleidelijn, die incorrect is." + }, + "3": { + "then": "Deze oversteekplaats heeft een geleidelijn, maar slechts aan één kant" } }, "question": "Heeft deze oversteekplaats een geleidelijn?" }, - "crossing-type": { - "mappings": { - "0": { - "then": "Oversteekplaats, zonder verkeerslichten" - }, - "1": { - "then": "Oversteekplaats met verkeerslichten" - }, - "2": { - "then": "Zebrapad" - }, - "3": { - "then": "Oversteekplaats zonder kruispuntmarkeringen" - } - }, - "question": "Wat voor oversteekplaats is dit?" - }, "crossing-vibration": { "mappings": { "0": { @@ -3775,6 +3777,20 @@ }, "question": "Wat voor markering heeft deze oversteekplaats?", "render": "Deze oversteekplaats heeft {crossing:markings} markeringen" + }, + "signals": { + "mappings": { + "0": { + "then": "Er zijn geen verkeerslichten bij deze oversteekplaats" + }, + "1": { + "then": "Er zijn verkeerslichten bij deze oversteekplaats" + }, + "2": { + "then": "Er zijn verkeerslichten bij deze oversteekplaats" + } + }, + "question": "Zijn er verkeerslichten bij deze oversteekplaats?" } }, "title": { @@ -4990,13 +5006,22 @@ "question": "Hoe hoog is de drempel?", "render": "De drempel bij deze deur is {kerb:height}" }, + "ref": { + "mappings": { + "0": { + "then": "Geen referentienummer" + } + }, + "question": "Heeft deze toegang een referentienummer?", + "render": "Deze deur heeft {ref} als referentienummer" + }, "width": { "question": "Wat is de breedte van deze deur/toegang?", "render": "Deze deur heeft een breedte van {canonical(width)}" } }, "title": { - "render": "Ingang" + "render": "Ingang {ref}" } }, "etymology": { @@ -6834,6 +6859,9 @@ }, "1": { "then": "Je kan geen pakketten versturen vanuit deze pakketautomaat" + }, + "2": { + "then": "Je kan pakk etten versturen vanuit deze pakketautomaat, maar alleen voor retouren" } }, "question": "Kan je pakketten versturen vanuit deze pakketautomaat?" @@ -9757,6 +9785,26 @@ "question": "Hoeveel moet men betalen om deze toiletten te gebruiken?", "render": "De toiletten gebruiken kost {charge}" }, + "toilet-drying": { + "mappings": { + "0": { + "then": "Elektrische handdrogers zijn beschikbaar om handen te drogen." + }, + "1": { + "then": "Papieren wegwerphanddoeken zijn beschikbaar om handen te drogen." + }, + "2": { + "then": "Een apparaat met een handdoekrol is beschikbaar om handen te drogen" + }, + "3": { + "then": "Een stoffen handdoek is beschikbaar om handen te drogen." + }, + "4": { + "then": "Er zijn geen handdroogvoorzieningen beschikbaar." + } + }, + "question": "Hebben deze toiletten een apparaat om je handen te drogen?" + }, "toilet-handwashing": { "mappings": { "0": { @@ -9786,6 +9834,21 @@ } } }, + "toilet-supervised": { + "mappings": { + "0": { + "then": "Er is een persoon die toezicht houdt op deze toiletten" + }, + "1": { + "then": "Er is een persoon die toezicht houdt op deze toiletten, maar deze is slechts op enkele vaste momenten aanwezig" + }, + "2": { + "then": "Er is geen persoon die toezicht houdt" + } + }, + "question": "Is er toezicht op deze toilet?", + "questionHint": "Deze persoon houdt typisch de toiletten proper en int het toiletgeld" + }, "toilets-changing-table": { "mappings": { "0": { diff --git a/langs/layers/pa_PK.json b/langs/layers/pa_PK.json index 5e7360bba3..9a7f340bd6 100644 --- a/langs/layers/pa_PK.json +++ b/langs/layers/pa_PK.json @@ -3,6 +3,12 @@ "description": "پتے", "name": "او‌ایس‌ایم وچ جاݨ پچھاݨے پتے" }, + "all_streets": { + "name": "ساریاں سڑکاں", + "title": { + "render": "سڑک" + } + }, "artwork": { "name": "کلاکاری", "tagRenderings": { @@ -151,7 +157,7 @@ "entrance": { "name": "دروازہ", "title": { - "render": "دروازہ" + "render": "دروازہ{ref}" } }, "food": { diff --git a/langs/layers/pl.json b/langs/layers/pl.json index c5d216106c..fffe2c12fc 100644 --- a/langs/layers/pl.json +++ b/langs/layers/pl.json @@ -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", @@ -1881,7 +1887,7 @@ } }, "title": { - "render": "Wejście" + "render": "Wejście {ref}" } }, "etymology": { diff --git a/langs/layers/ru.json b/langs/layers/ru.json index 78994d5f87..2581c2fbfd 100644 --- a/langs/layers/ru.json +++ b/langs/layers/ru.json @@ -34,6 +34,12 @@ } } }, + "all_streets": { + "name": "Все улицы", + "title": { + "render": "Улица" + } + }, "ambulancestation": { "description": "Станция скорой помощи это полигон для хранения транспорта, медицинского оборудования, средств индивидуальной защиты и других медицинских принадлежностей.", "name": "Карта станций скорой помощи", diff --git a/langs/layers/zh_Hant.json b/langs/layers/zh_Hant.json index 2bbb89ac6e..68ae9feabe 100644 --- a/langs/layers/zh_Hant.json +++ b/langs/layers/zh_Hant.json @@ -6,6 +6,14 @@ "fixme": { "question": "這裡需要修什麼?請直接解釋" }, + "header": { + "mappings": { + "0": { + "then": "未知的地址" + } + }, + "render": "{addr:street} {addr:housenumber} {addr:unit}" + }, "housenumber": { "mappings": { "0": { @@ -17,7 +25,17 @@ }, "street": { "question": "地址所在的道路是?", + "questionHint": "不要包含門牌號碼", "render": "此地址位於街道 {addr:street}" + }, + "unit": { + "mappings": { + "0": { + "then": "沒有單位號碼" + } + }, + "question": "這邊的單位號碼或是字母是什麼?", + "render": "單位號碼是{addr:unit}" } }, "title": { @@ -25,6 +43,7 @@ } }, "advertising": { + "description": "我們會從廣告功能的參數、營運者以及亮燈來完成資料", "name": "廣告", "presets": { "0": { @@ -35,6 +54,12 @@ } } }, + "all_streets": { + "name": "所有道路", + "title": { + "render": "照明" + } + }, "artwork": { "description": "顯示全世界的雕像、半身像、塗鴉以及其他類型的藝術品的地圖", "name": "藝術品", diff --git a/langs/themes/ca.json b/langs/themes/ca.json index 26197dc4fa..7313559afe 100644 --- a/langs/themes/ca.json +++ b/langs/themes/ca.json @@ -899,28 +899,26 @@ } }, "2": { - "name": "Tots els carrers", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Aquest carrer està il·luminat" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Aquest carrer està il·luminat" + }, + "1": { + "then": "Aquest carrer no està il·luminat" + }, + "2": { + "then": "Aquest carrer està il·luminat per la nit" + }, + "3": { + "then": "Aquest carrer està il·luminat 24/7" + } }, - "1": { - "then": "Aquest carrer no està il·luminat" - }, - "2": { - "then": "Aquest carrer està il·luminat per la nit" - }, - "3": { - "then": "Aquest carrer està il·luminat 24/7" - } - }, - "question": "Aquest carrer està il·luminat?" + "question": "Aquest carrer està il·luminat?" + } } - }, - "title": { - "render": "Carrer" } } }, diff --git a/langs/themes/cs.json b/langs/themes/cs.json index 9387ee4199..d08ee07348 100644 --- a/langs/themes/cs.json +++ b/langs/themes/cs.json @@ -1257,28 +1257,26 @@ } }, "2": { - "name": "Všechny ulice", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Tato ulice je osvětlená" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Tato ulice je osvětlená" + }, + "1": { + "then": "Tato ulice není osvětlená" + }, + "2": { + "then": "Tato ulice je v noci osvětlená" + }, + "3": { + "then": "Tato ulice je osvětlena 24/7" + } }, - "1": { - "then": "Tato ulice není osvětlená" - }, - "2": { - "then": "Tato ulice je v noci osvětlená" - }, - "3": { - "then": "Tato ulice je osvětlena 24/7" - } - }, - "question": "Je tato ulice osvětlená?" + "question": "Je tato ulice osvětlená?" + } } - }, - "title": { - "render": "Ulice" } } }, diff --git a/langs/themes/da.json b/langs/themes/da.json index 9bba8ee858..5c7dd8b286 100644 --- a/langs/themes/da.json +++ b/langs/themes/da.json @@ -710,28 +710,26 @@ } }, "2": { - "name": "Alle gader", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Denne gade er oplyst" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Denne gade er oplyst" + }, + "1": { + "then": "Denne gade er ikke oplyst" + }, + "2": { + "then": "Denne gade er oplyst om natten" + }, + "3": { + "then": "Denne gade er oplyst 24/7" + } }, - "1": { - "then": "Denne gade er ikke oplyst" - }, - "2": { - "then": "Denne gade er oplyst om natten" - }, - "3": { - "then": "Denne gade er oplyst 24/7" - } - }, - "question": "Er denne gade oplyst?" + "question": "Er denne gade oplyst?" + } } - }, - "title": { - "render": "Gade" } } }, diff --git a/langs/themes/de.json b/langs/themes/de.json index 0161071931..988fd937e5 100644 --- a/langs/themes/de.json +++ b/langs/themes/de.json @@ -1238,28 +1238,26 @@ } }, "2": { - "name": "Alle Straßen", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Diese Straße ist beleuchtet" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Diese Straße ist beleuchtet" + }, + "1": { + "then": "Diese Straße ist nicht beleuchtet" + }, + "2": { + "then": "Diese Straße ist nachts beleuchtet" + }, + "3": { + "then": "Diese Straße ist durchgehend beleuchtet" + } }, - "1": { - "then": "Diese Straße ist nicht beleuchtet" - }, - "2": { - "then": "Diese Straße ist nachts beleuchtet" - }, - "3": { - "then": "Diese Straße ist durchgehend beleuchtet" - } - }, - "question": "Ist diese Straße beleuchtet?" + "question": "Ist diese Straße beleuchtet?" + } } - }, - "title": { - "render": "Straße" } } }, diff --git a/langs/themes/en.json b/langs/themes/en.json index 8a91f31920..bf5720e340 100644 --- a/langs/themes/en.json +++ b/langs/themes/en.json @@ -623,6 +623,30 @@ } } } + }, + "popup": { + "0": { + "body": { + "0": { + "render": { + "after": "to include the link https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import", + "special": { + "text": "Edit your user profile" + } + } + }, + "1": { + "render": { + "special": { + "message": "Reload your profile" + } + } + } + }, + "title": { + "render": "Profile mention obligated" + } + } } }, "guideposts": { @@ -1257,28 +1281,26 @@ } }, "2": { - "name": "All streets", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "This street is lit" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "This street is lit" + }, + "1": { + "then": "This street is not lit" + }, + "2": { + "then": "This street is lit at night" + }, + "3": { + "then": "This street is lit 24/7" + } }, - "1": { - "then": "This street is not lit" - }, - "2": { - "then": "This street is lit at night" - }, - "3": { - "then": "This street is lit 24/7" - } - }, - "question": "Is this street lit?" + "question": "Is this street lit?" + } } - }, - "title": { - "render": "Street" } } }, @@ -1403,7 +1425,38 @@ "title": "Waste Baskets" }, "wayside_shrines": { - "description": "This map shows shrines found on the side of roads and paths, and allows adding new ones", + "description": "This map shows shrines and crosses found on the side of roads and paths, and allows adding new ones", "title": "Wayside shrines" + }, + "winter_service": { + "description": "A map showing roads and whether they're cleared in winter", + "layers": { + "0": { + "description": "Streets that have some form of winter service", + "name": "Serviced streets", + "title": { + "render": "Serviced street" + } + } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "This road is serviced in winter" + }, + "1": { + "then": "This road is serviced in winter, but only to a limited extent. This is often signposted as well." + }, + "2": { + "then": "This road is not serviced in winter" + } + }, + "question": "Is this road serviced (e.g. cleared of snow) in winter?" + } + } + }, + "title": "Winter Service" } } \ No newline at end of file diff --git a/langs/themes/es.json b/langs/themes/es.json index f8b588400f..f6bc95ee11 100644 --- a/langs/themes/es.json +++ b/langs/themes/es.json @@ -1182,28 +1182,26 @@ } }, "2": { - "name": "Todas las calles", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Esta calle está iluminada" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Esta calle está iluminada" + }, + "1": { + "then": "Esta calle no está iluminada" + }, + "2": { + "then": "Esta calle está iluminada por la noche" + }, + "3": { + "then": "Esta calle está iluminada 24/7" + } }, - "1": { - "then": "Esta calle no está iluminada" - }, - "2": { - "then": "Esta calle está iluminada por la noche" - }, - "3": { - "then": "Esta calle está iluminada 24/7" - } - }, - "question": "¿Está iluminada esta calle?" + "question": "¿Está iluminada esta calle?" + } } - }, - "title": { - "render": "Calle" } } }, diff --git a/langs/themes/eu.json b/langs/themes/eu.json index c352448436..a940a77a81 100644 --- a/langs/themes/eu.json +++ b/langs/themes/eu.json @@ -178,15 +178,6 @@ "sports": { "title": "Kirolak" }, - "street_lighting": { - "layers": { - "2": { - "title": { - "render": "Kalea" - } - } - } - }, "trees": { "title": "Zuhaitzak" }, diff --git a/langs/themes/fr.json b/langs/themes/fr.json index 7d88aba22c..0686170e04 100644 --- a/langs/themes/fr.json +++ b/langs/themes/fr.json @@ -982,28 +982,26 @@ } }, "2": { - "name": "Toutes les rues", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Cette rue est éclairée" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Cette rue est éclairée" + }, + "1": { + "then": "Cette rue n’est pas éclairée" + }, + "2": { + "then": "Cette rue est éclairée la nuit" + }, + "3": { + "then": "Cette rue est éclairée en permanence" + } }, - "1": { - "then": "Cette rue n’est pas éclairée" - }, - "2": { - "then": "Cette rue est éclairée la nuit" - }, - "3": { - "then": "Cette rue est éclairée en permanence" - } - }, - "question": "Cette rue est-elle éclairée ?" + "question": "Cette rue est-elle éclairée ?" + } } - }, - "title": { - "render": "Rue" } } }, diff --git a/langs/themes/hu.json b/langs/themes/hu.json index 5f4ae6bc25..c4e89bb5c7 100644 --- a/langs/themes/hu.json +++ b/langs/themes/hu.json @@ -431,28 +431,26 @@ } }, "2": { - "name": "Minden utca", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Ez az utca ki van világítva" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Ez az utca ki van világítva" + }, + "1": { + "then": "Ez az utca nincs kivilágítva" + }, + "2": { + "then": "Ez az utca éjjel ki van világítva" + }, + "3": { + "then": "Ez az utca éjjel-nappal ki van világítva" + } }, - "1": { - "then": "Ez az utca nincs kivilágítva" - }, - "2": { - "then": "Ez az utca éjjel ki van világítva" - }, - "3": { - "then": "Ez az utca éjjel-nappal ki van világítva" - } - }, - "question": "Ki van-e világítva ez az utca?" + "question": "Ki van-e világítva ez az utca?" + } } - }, - "title": { - "render": "Utca" } } }, diff --git a/langs/themes/it.json b/langs/themes/it.json index 7e549ebb3f..fc77a01064 100644 --- a/langs/themes/it.json +++ b/langs/themes/it.json @@ -566,28 +566,26 @@ } }, "2": { - "name": "Tutte le strade", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Questa strada è illuminata" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Questa strada è illuminata" + }, + "1": { + "then": "Questa strada non è illuminata" + }, + "2": { + "then": "Questa strada è illuminata di sera" + }, + "3": { + "then": "Questa strada è illuminata 24 ore su 24" + } }, - "1": { - "then": "Questa strada non è illuminata" - }, - "2": { - "then": "Questa strada è illuminata di sera" - }, - "3": { - "then": "Questa strada è illuminata 24 ore su 24" - } - }, - "question": "Questa strada è illuminata?" + "question": "Questa strada è illuminata?" + } } - }, - "title": { - "render": "Strada" } } }, diff --git a/langs/themes/ko.json b/langs/themes/ko.json index 076fff142d..1e1e49476b 100644 --- a/langs/themes/ko.json +++ b/langs/themes/ko.json @@ -1168,28 +1168,26 @@ } }, "2": { - "name": "모든 거리", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "이 거리는 밝습니다" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "이 거리는 밝습니다" + }, + "1": { + "then": "이 거리는 밝지 않습니다" + }, + "2": { + "then": "이 거리는 밤에 밝습니다" + }, + "3": { + "then": "이 거리는 24시간 밝습니다" + } }, - "1": { - "then": "이 거리는 밝지 않습니다" - }, - "2": { - "then": "이 거리는 밤에 밝습니다" - }, - "3": { - "then": "이 거리는 24시간 밝습니다" - } - }, - "question": "이 거리는 밝나요?" + "question": "이 거리는 밝나요?" + } } - }, - "title": { - "render": "거리" } } }, diff --git a/langs/themes/nb_NO.json b/langs/themes/nb_NO.json index e602bac9e4..46055c0f66 100644 --- a/langs/themes/nb_NO.json +++ b/langs/themes/nb_NO.json @@ -440,28 +440,26 @@ } }, "2": { - "name": "Alle gater", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Denne gaten er belyst" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Denne gaten er belyst" + }, + "1": { + "then": "Denne gaten er ikke belyst" + }, + "2": { + "then": "Denne gaten er belyst nattestid" + }, + "3": { + "then": "Denne gaten er belyst døgnet rundt" + } }, - "1": { - "then": "Denne gaten er ikke belyst" - }, - "2": { - "then": "Denne gaten er belyst nattestid" - }, - "3": { - "then": "Denne gaten er belyst døgnet rundt" - } - }, - "question": "Er denne gaten belyst?" + "question": "Er denne gaten belyst?" + } } - }, - "title": { - "render": "Gate" } } }, diff --git a/langs/themes/nl.json b/langs/themes/nl.json index 49c9e8b22b..6597630507 100644 --- a/langs/themes/nl.json +++ b/langs/themes/nl.json @@ -669,6 +669,30 @@ } } }, + "popup": { + "0": { + "body": { + "0": { + "render": { + "after": " en voeg deze link toe: https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import", + "special": { + "text": "Pas je profiel aan" + } + } + }, + "1": { + "render": { + "special": { + "message": "Herlaad je profiel" + } + } + } + }, + "title": { + "render": "Link op profiel verplicht" + } + } + }, "shortDescription": "Grb import helper tool", "title": "GRB import helper" }, @@ -1293,28 +1317,26 @@ } }, "2": { - "name": "Alle straten", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Deze straat is verlicht" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Deze straat is verlicht" + }, + "1": { + "then": "Deze straat is niet verlicht" + }, + "2": { + "then": "Deze straat is 's nachts verlicht" + }, + "3": { + "then": "Deze straat is 24/7 verlicht" + } }, - "1": { - "then": "Deze straat is niet verlicht" - }, - "2": { - "then": "Deze straat is 's nachts verlicht" - }, - "3": { - "then": "Deze straat is 24/7 verlicht" - } - }, - "question": "Is deze straat verlicht?" + "question": "Is deze straat verlicht?" + } } - }, - "title": { - "render": "Straat" } } }, diff --git a/langs/themes/pa_PK.json b/langs/themes/pa_PK.json index aefe3545fc..c5879317aa 100644 --- a/langs/themes/pa_PK.json +++ b/langs/themes/pa_PK.json @@ -158,12 +158,6 @@ "title": { "render": "روشنی والی سڑک" } - }, - "2": { - "name": "ساریاں سڑکاں", - "title": { - "render": "سڑک" - } } }, "title": "سڑک دیاں روشنیاں" diff --git a/langs/themes/pl.json b/langs/themes/pl.json index 56809ae403..adc045a154 100644 --- a/langs/themes/pl.json +++ b/langs/themes/pl.json @@ -855,28 +855,26 @@ } }, "2": { - "name": "Wszystkie ulice", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Ta ulica jest oświetlona" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Ta ulica jest oświetlona" + }, + "1": { + "then": "Ta ulica nie jest oświetlona" + }, + "2": { + "then": "Ta ulica jest oświetlona w nocy" + }, + "3": { + "then": "Ta ulica jest oświetlona 24/7" + } }, - "1": { - "then": "Ta ulica nie jest oświetlona" - }, - "2": { - "then": "Ta ulica jest oświetlona w nocy" - }, - "3": { - "then": "Ta ulica jest oświetlona 24/7" - } - }, - "question": "Czy ta ulica jest oświetlona?" + "question": "Czy ta ulica jest oświetlona?" + } } - }, - "title": { - "render": "Ulica" } } }, diff --git a/langs/themes/ru.json b/langs/themes/ru.json index d865e05a04..5292a9bd36 100644 --- a/langs/themes/ru.json +++ b/langs/themes/ru.json @@ -236,14 +236,6 @@ "title": "Спортивные объекты" }, "street_lighting": { - "layers": { - "2": { - "name": "Все улицы", - "title": { - "render": "Улица" - } - } - }, "title": "Уличное освещение" }, "surveillance": { diff --git a/langs/themes/zh_Hant.json b/langs/themes/zh_Hant.json index adcb076260..3278776d81 100644 --- a/langs/themes/zh_Hant.json +++ b/langs/themes/zh_Hant.json @@ -807,28 +807,26 @@ } }, "2": { - "name": "所有道路", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "這道路有照明" + "override": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "這道路有照明" + }, + "1": { + "then": "這道路沒有照明" + }, + "2": { + "then": "這道路晚上有照明" + }, + "3": { + "then": "這道路 24/7 有照明" + } }, - "1": { - "then": "這道路沒有照明" - }, - "2": { - "then": "這道路晚上有照明" - }, - "3": { - "then": "這道路 24/7 有照明" - } - }, - "question": "這道路有照明嗎?" + "question": "這道路有照明嗎?" + } } - }, - "title": { - "render": "照明" } } }, diff --git a/langs/zh_Hant.json b/langs/zh_Hant.json index 1e4e3b8673..e5691f3a08 100644 --- a/langs/zh_Hant.json +++ b/langs/zh_Hant.json @@ -723,6 +723,10 @@ "typeTitle": "這是 {title}" }, "privacy": { + "browsingHistoryIntro": "MapComplete 會儲存你最後開始的主題與地點,來幫助你快速恢復狀態。如果你沒有登入,這些設定會在裝置當中。如果你有登入,能透過開放街圖在其他裝置也會同步你的歷史。", + "browsingHistoryLoggedIn": "你目前的設定:", + "browsingHistoryNotLoggedIn": "登入來改變你的設定", + "browsingHistoryTitle": "瀏覽歷史", "editingIntro": "當你對地圖變動時,這些變動會存在開放街圖並且是公開給所有人。採用 MapComplete 的編輯變動包括以下資料:", "editingOutro": "請參考OpenStreetMap.org的隱私政策來取得更多資訊。我們也提醒你註冊帳號時能夠採用假名。", "editingTitle": "當做出變動", diff --git a/package-lock.json b/package-lock.json index 94762b566f..4d6a27479e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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", @@ -12777,9 +12777,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": [ { @@ -39262,9 +39262,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": { diff --git a/package.json b/package.json index 5f822006ef..b5e5cbc0c1 100644 --- a/package.json +++ b/package.json @@ -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": [ diff --git a/scripts/generateLayerOverview.ts b/scripts/generateLayerOverview.ts index d3f4dd4f98..51b2edab3f 100644 --- a/scripts/generateLayerOverview.ts +++ b/scripts/generateLayerOverview.ts @@ -501,7 +501,7 @@ class LayerOverviewUtils extends Script { priviliged.delete(key) }) - // These two get a free pass + // These get a free pass priviliged.delete("summary") priviliged.delete("last_click") priviliged.delete("search") diff --git a/scripts/generateTaginfoProjectFiles.ts b/scripts/generateTaginfoProjectFiles.ts index 81642c915e..ff566e78e2 100644 --- a/scripts/generateTaginfoProjectFiles.ts +++ b/scripts/generateTaginfoProjectFiles.ts @@ -9,49 +9,57 @@ import { Utils } from "../src/Utils" /** * Generates all the files in "Docs/TagInfo". These are picked up by the taginfo project, showing a link to the mapcomplete theme if the key is used */ +interface TagInfoEntry { + key: string + description: string + value?: string, + icon_url?: string, + doc_url?: string +} + +interface TagInfoProjectFile { + // data format version, currently always 1, will get updated if there are incompatible changes to the format (required) + data_format: 1, + // timestamp when project file was updated is not given as it pollutes the github history + project: { + name: string, // name of the project (required) + description: string, // short description of the project (required) + project_url: string, // home page of the project with general information (required) + doc_url: string // documentation of the project and especially the tags used (optional) + icon_url: string, // project logo, should work in 16x16 pixels on white and light gray backgrounds (optional) + contact_name: string, // contact name, needed for taginfo maintainer (required) + contact_email: string // contact email, needed for taginfo maintainer (required) + }, + tags: TagInfoEntry[] +} + +interface TagInfoPrototype { + key: string, + value?: string, + shownText: string, + layerName: string, + layer: LayerConfig, + icon?: string + emoji?: string + trid?: string +} const outputDirectory = "Docs/TagInfo" -function generateTagOverview( - kv: { k: string; v: string }, - description: string -): { - key: string - description: string - value?: string -} { - const overview = { - // OSM tag key (required) - key: kv.k, - description: description, - value: undefined, - } - if (kv.v !== undefined) { - // OSM tag value (optional, if not supplied it means "all values") - overview.value = kv.v - } - return overview -} - -function generateLayerUsage(layer: LayerConfig, layout: ThemeConfig): any[] { +function generateLayerUsage(layer: LayerConfig): TagInfoPrototype[] { if (layer.name === undefined) { return [] // Probably a duplicate or irrelevant layer } const usedTags = layer.source.osmTags.asChange({}) - const result: { - key: string - description: string - value?: string - }[] = [] + const result: TagInfoPrototype[] = [] + const layerName = layer.name.txt for (const kv of usedTags) { - const description = - "The MapComplete theme " + - layout.title.txt + - " has a layer " + - layer.name.txt + - " showing features with this tag" - result.push(generateTagOverview(kv, description)) + result.push({ + key: kv.k, value: kv.v, layerName, + shownText: "Features with this tag are displayed", + layer + }) } for (const tr of layer.tagRenderings) { @@ -66,55 +74,47 @@ function generateLayerUsage(layer: LayerConfig, layout: ThemeConfig): any[] { const usesImageUpload = (tr.render?.txt?.indexOf("image_upload") ?? -2) > 0 if (usesImageCarousel || usesImageUpload) { - const descrNoUpload = `The layer '${layer.name.txt} shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary` - const descrUpload = `The layer '${layer.name.txt} allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary` + const descrNoUpload = `Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary` + const descrUpload = `${descrNoUpload} Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary` - const descr = (usesImageUpload ? descrUpload : descrNoUpload) + condition - - result.push(generateTagOverview({ k: "image", v: undefined }, descr)) - result.push(generateTagOverview({ k: "panoramax", v: undefined }, descr)) - - result.push(generateTagOverview({ k: "mapillary", v: undefined }, descr)) - result.push(generateTagOverview({ k: "wikidata", v: undefined }, descr)) - result.push(generateTagOverview({ k: "wikipedia", v: undefined }, descr)) + const shownText = (usesImageUpload ? descrUpload : descrNoUpload) + condition + const keys = ["image", "panoramax", "mapillary", "wikidata", "wikipedia"] + for (const key of keys) { + result.push({ + key, shownText, layerName, layer, emoji: "📷", trid: "images" + }) + } } } const q = tr.question?.txt const key = tr.freeform?.key if (key != undefined) { - let descr = `Layer '${layer.name.txt}'` - if (q == undefined) { - descr += " shows values with" - } else { - descr += " shows and asks freeform values for" + let descr = "Values of `" + key + "` are shown with \"" + tr.render.txt + "\"" + if (q != undefined) { + descr += " and can be updated. The question is \"" + q + "\"" } - descr += ` key '${key}' (in the mapcomplete.org theme '${layout.title.txt}')` - result.push(generateTagOverview({ k: key, v: undefined }, descr + condition)) + result.push(({ + key, layerName, shownText: descr, + layer, + icon: !Utils.isEmoji(tr.renderIcon) ? tr.renderIcon : undefined, + emoji: Utils.isEmoji(tr.renderIcon) ? tr.renderIcon : undefined, + trid: tr.id + })) } - const mappings = tr.mappings ?? [] - for (const mapping of mappings) { - let descr = "Layer '" + layer.name.txt + "'" - descr += - " shows " + - mapping.if.asHumanString(false, false, {}) + - " with a fixed text, namely '" + - mapping.then.txt + - "'" - if ( - q != undefined && - mapping.hideInAnswer != true // != true will also match if a - ) { - descr += " and allows to pick this as a default answer" - } - descr += ` (in the mapcomplete.org theme '${layout.title.txt}')` + for (const mapping of tr.mappings ?? []) { for (const kv of mapping.if.asChange({})) { - let d = descr - if (q != undefined && kv.v == "") { - d = `${descr} Picking this answer will delete the key ${kv.k}.` - } - result.push(generateTagOverview(kv, d + condition)) + result.push({ + key: kv.k, + value: kv.v, + layerName, + layer, + shownText: `${mapping.if.asHumanString()} is displayed as "${mapping.then.txt}"`, + icon: !Utils.isEmoji(mapping.icon) ? mapping.icon : undefined, + emoji: Utils.isEmoji(mapping.icon) ? mapping.icon : undefined, + trid: tr.id + }) } } } @@ -126,8 +126,8 @@ function generateLayerUsage(layer: LayerConfig, layout: ThemeConfig): any[] { * Generates the JSON-object representing the theme for inclusion on taginfo * @param layout */ -function generateTagInfoEntry(layout: ThemeConfig): any { - const usedTags = [] +function generateTagInfoEntry(layout: ThemeConfig): string { + const usedTags: TagInfoPrototype[] = [] for (const layer of layout.layers) { if (layer.source === null) { continue @@ -135,7 +135,7 @@ function generateTagInfoEntry(layout: ThemeConfig): any { if (layer.source.geojsonSource !== undefined && layer.source.isOsmCacheLayer !== true) { continue } - usedTags.push(...generateLayerUsage(layer, layout)) + usedTags.push(...generateLayerUsage(layer)) } if (usedTags.length == 0) { @@ -147,7 +147,53 @@ function generateTagInfoEntry(layout: ThemeConfig): any { icon = icon.substring(2) } - const themeInfo = { + + const merged: Map = new Map() + for (const entry of usedTags) { + const key = entry.key + ";" + (entry.value ?? "") + ";" + entry.shownText + let entries = merged.get(key) + if (!entries) { + entries = [] + merged.set(key, entries) + } + entries.push(entry) + } + + const entries: TagInfoEntry[] = [] + + const repo = "https://source.mapcomplete.org/MapComplete/MapComplete/" + const branchBase = repo + "src/branch/develop/" + Array.from(merged.values()).forEach((prototypes: TagInfoPrototype[]) => { + // We use a prototype without condition, as this has a higher chance of being the "root"-layer + const p = prototypes[0] + const layers = prototypes.map(p => p.layerName) + + let layerDescr = `layers ${layers.join(", ")}` + if (layers.length === 1) { + layerDescr = `layer ${layers[0]}` + } + let doc_url = branchBase + "Docs/Layers/" + p.layer.id + ".md" + if (p.trid) { + doc_url += "#" + p.trid.replace(/[^a-zA-Z0-9]/g, "_") + } + let defaultIcon = undefined + if (p.layer.hasDefaultIcon()) { + defaultIcon = p.layer.mapRendering.map(pr => pr.marker?.at(-1)?.icon?.render?.txt).find(x => x !== undefined) + } + let value = p.value + if (value === "") { + value = undefined + } + entries.push({ + key: p.key, + value, + description: p.shownText + " by " + layerDescr, + doc_url, + icon_url: p.icon ?? defaultIcon + }) + }) + + const themeInfo: TagInfoProjectFile = { // data format version, currently always 1, will get updated if there are incompatible changes to the format (required) data_format: 1, // timestamp when project file was updated is not given as it pollutes the github history @@ -156,12 +202,12 @@ function generateTagInfoEntry(layout: ThemeConfig): any { description: layout.shortDescription.txt, // short description of the project (required) project_url: "https://mapcomplete.org/" + layout.id, // home page of the project with general information (required) doc_url: - "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes", // documentation of the project and especially the tags used (optional) + repo + "src/branch/develop/Docs/Themes", // documentation of the project and especially the tags used (optional) icon_url: "https://mapcomplete.org/" + icon, // project logo, should work in 16x16 pixels on white and light gray backgrounds (optional) contact_name: "Pieter Vander Vennet", // contact name, needed for taginfo maintainer (required) - contact_email: "pietervdvn@posteo.net", // contact email, needed for taginfo maintainer (required) + contact_email: "info@mapcomplete.org" // contact email, needed for taginfo maintainer (required) }, - tags: usedTags, + tags: entries } const filename = "mapcomplete_" + layout.id diff --git a/src/Logic/GeoOperations.ts b/src/Logic/GeoOperations.ts index 2e6beab8f1..cb719760f2 100644 --- a/src/Logic/GeoOperations.ts +++ b/src/Logic/GeoOperations.ts @@ -14,7 +14,6 @@ import { } from "geojson" import { Tiles } from "../Models/TileRange" import { Utils } from "../Utils" - ;("use strict") export class GeoOperations { diff --git a/src/Logic/Osm/OsmConnection.ts b/src/Logic/Osm/OsmConnection.ts index 0230aa4ee5..15d010fae2 100644 --- a/src/Logic/Osm/OsmConnection.ts +++ b/src/Logic/Osm/OsmConnection.ts @@ -65,6 +65,16 @@ 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 } +} + export default interface UserDetails { name: string uid: number @@ -78,6 +88,7 @@ export default interface UserDetails { tracesCount: number description?: string languages: string[] + active_blocks: number } export type OsmServiceState = "online" | "readonly" | "offline" | "unknown" | "unreachable" @@ -309,6 +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, } this.userDetails.set(userdetails) this.loadingStatus.setData("logged-in") @@ -559,6 +571,14 @@ export class OsmConnection { }) } + /** + * Have you been banned by the DWG? + */ + public async getUserBlocks(): Promise { + const raw = await this.interact("/user/blocks/active.json") + return JSON.parse(raw)["user_blocks"] + } + /** * To be called by land.html */ diff --git a/src/Logic/SimpleMetaTagger.ts b/src/Logic/SimpleMetaTagger.ts index 51c905cbf6..c91cd2c506 100644 --- a/src/Logic/SimpleMetaTagger.ts +++ b/src/Logic/SimpleMetaTagger.ts @@ -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 } diff --git a/src/Logic/State/SearchState.ts b/src/Logic/State/SearchState.ts index 01746cb6a7..59b59d9bb0 100644 --- a/src/Logic/State/SearchState.ts +++ b/src/Logic/State/SearchState.ts @@ -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 { diff --git a/src/Logic/State/UserSettingsMetaTagging.ts b/src/Logic/State/UserSettingsMetaTagging.ts index 33a5ae85b5..6e568c5c32 100644 --- a/src/Logic/State/UserSettingsMetaTagging.ts +++ b/src/Logic/State/UserSettingsMetaTagging.ts @@ -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}) { - 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' - } -} \ No newline at end of file + public metaTaggging_for_usersettings(feat: { properties: Record }) { + 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" + } +} diff --git a/src/Logic/Tags/And.ts b/src/Logic/Tags/And.ts index f88c913700..e59e0095dd 100644 --- a/src/Logic/Tags/And.ts +++ b/src/Logic/Tags/And.ts @@ -29,6 +29,9 @@ export class And extends TagsFilter { and: ReadonlyArray ): TagsFilterClosed & OptimizedTag public static construct(and: ReadonlyArray): TagsFilter { + if (and === undefined) { + return undefined + } if (and.length === 1) { return and[0] } diff --git a/src/Logic/Tags/TagTypes.ts b/src/Logic/Tags/TagTypes.ts index 17e37d96e0..9e19bc8421 100644 --- a/src/Logic/Tags/TagTypes.ts +++ b/src/Logic/Tags/TagTypes.ts @@ -29,7 +29,6 @@ export class TagTypes { return and.and } - static safeOr(or: Or & OptimizedTag): ((FlatTag | (And & OptimizedTag)) & OptimizedTag)[] { return or.or } diff --git a/src/Logic/Tags/TagUtils.ts b/src/Logic/Tags/TagUtils.ts index 2f5506b96f..b6db516818 100644 --- a/src/Logic/Tags/TagUtils.ts +++ b/src/Logic/Tags/TagUtils.ts @@ -21,7 +21,7 @@ export class TagUtils { ["<=", (a, b) => a <= b], [">=", (a, b) => a >= b], ["<", (a, b) => a < b], - [">", (a, b) => a > b] + [">", (a, b) => a > b], ] public static modeDocumentation: Record< string, @@ -48,7 +48,7 @@ export class TagUtils { "### Removing a key\n" + "\n" + "If a key should be deleted in the OpenStreetMap-database, specify `key=` as well. This can be used e.g. to remove a\n" + - "fixme or value from another mapping if another field is filled out." + "fixme or value from another mapping if another field is filled out.", }, "!=": { name: "strict not equals", @@ -62,7 +62,7 @@ export class TagUtils { "### If key is present\n" + "\n" + "This implies that, to check if a key is present, `key!=` can be used. This will only match if the key is present and not\n" + - "empty." + "empty.", }, "~": { name: "Value matches regex", @@ -73,12 +73,12 @@ export class TagUtils { "The regex is put within braces as to prevent runaway values.\n" + "\nUse `key~*` to indicate that any value is allowed. This is effectively the check that the attribute is present (defined _and_ not empty)." + "\n" + - "Regexes will match the newline character with `.` too - the `s`-flag is enabled by default." + "Regexes will match the newline character with `.` too - the `s`-flag is enabled by default.", }, "~i~": { name: "Value matches case-invariant regex", overpassSupport: true, - docs: "A tag can also be tested against a regex with `key~i~regex`, where the case of the value will be ignored. The regex is still matched against the _entire_ value" + docs: "A tag can also be tested against a regex with `key~i~regex`, where the case of the value will be ignored. The regex is still matched against the _entire_ value", }, "!~": { name: "Value should _not_ match regex", @@ -87,27 +87,27 @@ export class TagUtils { "A tag can also be tested against a regex with `key!~regex`. This filter will match if the value does *not* match the regex. " + "\n If the\n" + "value is allowed to appear anywhere as substring, use `key~.*regex.*`.\n" + - "The regex is put within braces as to prevent runaway values.\n" + "The regex is put within braces as to prevent runaway values.\n", }, "!~i~": { name: "Value does *not* match case-invariant regex", overpassSupport: true, - docs: "A tag can also be tested against a regex with `key~i~regex`, where the case of the value will be ignored. The regex is still matched against the _entire_ value. This filter returns true if the value does *not* match" + docs: "A tag can also be tested against a regex with `key~i~regex`, where the case of the value will be ignored. The regex is still matched against the _entire_ value. This filter returns true if the value does *not* match", }, "~~": { name: "Key and value should match given regex", overpassSupport: true, - docs: "Both the `key` and `value` part of this specification are interpreted as regexes, both the key and value musth completely match their respective regexes" + docs: "Both the `key` and `value` part of this specification are interpreted as regexes, both the key and value musth completely match their respective regexes", }, "~i~~": { name: "Key and value should match a given regex; value is case-invariant", overpassSupport: true, - docs: "Similar to ~~, except that the value is case-invariant" + docs: "Similar to ~~, except that the value is case-invariant", }, "!~i~~": { name: "Key and value should match a given regex; value is case-invariant", overpassSupport: true, - docs: "Similar to !~~, except that the value is case-invariant" + docs: "Similar to !~~, except that the value is case-invariant", }, ":=": { name: "Substitute `... {some_key} ...` and match `key`", @@ -133,24 +133,24 @@ export class TagUtils { "\n" + "```json\n" + "{\n" + - " \"mappings\": [\n" + + ' "mappings": [\n' + " {\n" + - " \"if\":\"key:={some_other_key}\",\n" + - " \"then\": \"...\",\n" + - " \"hideInAnswer\": \"some_other_key=\"\n" + + ' "if":"key:={some_other_key}",\n' + + ' "then": "...",\n' + + ' "hideInAnswer": "some_other_key="\n' + " }\n" + " ]\n" + "}\n" + "```\n" + "\n" + "One can use `key!:=prefix-{other_key}-postfix` as well, to match if `key` is _not_ the same\n" + - "as `prefix-{other_key}-postfix` (with `other_key` substituted by the value)" + "as `prefix-{other_key}-postfix` (with `other_key` substituted by the value)", }, "!:=": { name: "Substitute `{some_key}` should not match `key`", overpassSupport: false, - docs: "See `:=`, except that this filter is inverted" - } + docs: "See `:=`, except that this filter is inverted", + }, } private static keyCounts: { keys: any; tags: any } = key_counts public static readonly numberAndDateComparisonDocs = @@ -175,10 +175,10 @@ export class TagUtils { "\n" + "```json\n" + "{\n" + - " \"osmTags\": {\n" + - " \"or\": [\n" + - " \"amenity=school\",\n" + - " \"amenity=kindergarten\"\n" + + ' "osmTags": {\n' + + ' "or": [\n' + + ' "amenity=school",\n' + + ' "amenity=kindergarten"\n' + " ]\n" + " }\n" + "}\n" + @@ -194,7 +194,7 @@ export class TagUtils { "If the schema-files note a type [`TagConfigJson`](https://github.com/pietervdvn/MapComplete/blob/develop/src/Models/ThemeConfig/Json/TagConfigJson.ts), you can use one of these values.\n" + "\n" + "In some cases, not every type of tags-filter can be used. For example, _rendering_ an option with a regex is\n" + - "fine (`\"if\": \"brand~[Bb]randname\", \"then\":\" The brand is Brandname\"`); but this regex can not be used to write a value\n" + + 'fine (`"if": "brand~[Bb]randname", "then":" The brand is Brandname"`); but this regex can not be used to write a value\n' + "into the database. The theme loader will however refuse to work with such inconsistencies and notify you of this while\n" + "you are building your theme.\n" + "\n" + @@ -205,18 +205,18 @@ export class TagUtils { "\n" + "```json\n" + "{\n" + - " \"and\": [\n" + - " \"key=value\",\n" + + ' "and": [\n' + + ' "key=value",\n' + " {\n" + - " \"or\": [\n" + - " \"other_key=value\",\n" + - " \"other_key=some_other_value\"\n" + + ' "or": [\n' + + ' "other_key=value",\n' + + ' "other_key=some_other_value"\n' + " ]\n" + " },\n" + - " \"key_which_should_be_missing=\",\n" + - " \"key_which_should_have_a_value~*\",\n" + - " \"key~.*some_regex_a*_b+_[a-z]?\",\n" + - " \"height<1\"\n" + + ' "key_which_should_be_missing=",\n' + + ' "key_which_should_have_a_value~*",\n' + + ' "key~.*some_regex_a*_b+_[a-z]?",\n' + + ' "height<1"\n' + " ]\n" + "}\n" + "```\n" + @@ -986,10 +986,10 @@ export class TagUtils { return ["", "## `" + mode + "` " + doc.name, "", doc.docs, "", ""].join("\n") }), "## " + - TagUtils.comparators.map((comparator) => "`" + comparator[0] + "`").join(" ") + - " Logical comparators", + TagUtils.comparators.map((comparator) => "`" + comparator[0] + "`").join(" ") + + " Logical comparators", TagUtils.numberAndDateComparisonDocs, - TagUtils.logicalOperator + TagUtils.logicalOperator, ].join("\n") } diff --git a/src/Models/Constants.ts b/src/Models/Constants.ts index 8eb2984674..cad980136d 100644 --- a/src/Models/Constants.ts +++ b/src/Models/Constants.ts @@ -191,6 +191,7 @@ export default class Constants { "resolved", "ring", "scissors", + "snowflake", "square", "square_rounded", "teardrop", diff --git a/src/Models/MenuState.ts b/src/Models/MenuState.ts index f2ff936f86..c4105fbde8 100644 --- a/src/Models/MenuState.ts +++ b/src/Models/MenuState.ts @@ -28,7 +28,7 @@ export class MenuState { "favourites", "usersettings", "share", - "menu" + "menu", ] as const /** @@ -140,7 +140,6 @@ export class MenuState { this.isClosingAll = true const ps = this.pageStates try { - if (ps.menu.data) { ps.menu.set(false) return true @@ -177,6 +176,5 @@ export class MenuState { return } MenuState.previewedImage.setData(img) - } } diff --git a/src/Models/ThemeConfig/Conversion/PrepareTheme.ts b/src/Models/ThemeConfig/Conversion/PrepareTheme.ts index 4ad260ce1e..abbd5c9d9e 100644 --- a/src/Models/ThemeConfig/Conversion/PrepareTheme.ts +++ b/src/Models/ThemeConfig/Conversion/PrepareTheme.ts @@ -10,7 +10,7 @@ import { SetDefault, } from "./Conversion" import { ThemeConfigJson } from "../Json/ThemeConfigJson" -import { PrepareLayer } from "./PrepareLayer" +import { PrepareLayer, RewriteSpecial } from "./PrepareLayer" import { LayerConfigJson } from "../Json/LayerConfigJson" import { Utils } from "../../../Utils" import Constants from "../../Constants" @@ -618,6 +618,17 @@ export class PrepareTheme extends Fuse { new SetDefault("socialImage", "assets/SocialImage.png", true), // We expand all tagrenderings first... new On("layers", new Each(new PrepareLayer(state))), + new On( + "popup", + new Each( + new Fuse( + "Prepare popups", + new On("body", new Each(new RewriteSpecial())), + new On("title", new RewriteSpecial()) + ) + ) + ), + // Then we apply the override all. We must first expand everything in case that we override something in an expanded tag // Note that it'll cheat with tagRenderings+ new ApplyOverrideAll(), diff --git a/src/Models/ThemeConfig/Json/ThemeConfigJson.ts b/src/Models/ThemeConfig/Json/ThemeConfigJson.ts index cbdeef07b2..bebc25b82e 100644 --- a/src/Models/ThemeConfig/Json/ThemeConfigJson.ts +++ b/src/Models/ThemeConfig/Json/ThemeConfigJson.ts @@ -3,6 +3,8 @@ import ExtraLinkConfigJson from "./ExtraLinkConfigJson" import { RasterLayerProperties } from "../../RasterLayerProperties" import { Translatable } from "./Translatable" +import { TagConfigJson } from "./TagConfigJson" +import { TagRenderingConfigJson } from "./TagRenderingConfigJson" /** * Defines the entire theme. @@ -468,4 +470,24 @@ export interface ThemeConfigJson { * group: hidden */ _usedImages?: string[] + + /** + * If set, an _additional_ popup will be shown under the theme introduction page. + * + * The embedded tagRenderingConfigs will be run against the settings-state of the contributor. + * If multiple popups are set, the first popup of the list will be rendered on top (and thus be seen first). + */ + popup?: { + /** + * ifset: the user can dismiss this message + */ + dismissible?: boolean + condition?: TagConfigJson + title: TagRenderingConfigJson + body: TagRenderingConfigJson[] + /** + * id of the popup, mostly to keep the translations in check + */ + id: string + }[] } diff --git a/src/Models/ThemeConfig/TagRenderingConfig.ts b/src/Models/ThemeConfig/TagRenderingConfig.ts index 3d083299f7..668a67b31b 100644 --- a/src/Models/ThemeConfig/TagRenderingConfig.ts +++ b/src/Models/ThemeConfig/TagRenderingConfig.ts @@ -223,7 +223,7 @@ export default class TagRenderingConfig { inline: json.freeform.inline ?? false, default: json.freeform.default, postfixDistinguished: json.freeform.postfixDistinguished?.trim(), - args: json.freeform.helperArgs + args: json.freeform.helperArgs, } if (json.freeform["extraTags"] !== undefined) { throw `Freeform.extraTags is defined. This should probably be 'freeform.addExtraTag' (at ${context})` @@ -447,7 +447,7 @@ export default class TagRenderingConfig { iconClass, addExtraTags, searchTerms: mapping.searchTerms, - priorityIf: prioritySearch + priorityIf: prioritySearch, } if (isQuestionable) { if (hideInAnswer !== true && mp.if !== undefined && !mp.if.isUsableAsAnswer()) { @@ -554,7 +554,7 @@ export default class TagRenderingConfig { then: new TypedTranslation( this.render.replace("{" + this.freeform.key + "}", leftover).translations, this.render.context - ) + ), }) } } @@ -607,7 +607,7 @@ export default class TagRenderingConfig { return { then: this.render.PartialSubs({ [this.freeform.key]: v.trim() }), icon: this.renderIcon, - iconClass: this.renderIconClass + iconClass: this.renderIconClass, } } } @@ -662,7 +662,7 @@ export default class TagRenderingConfig { key: commonKey, values: Utils.NoNull( values.map((arr) => arr.filter((item) => item.k === commonKey)[0]?.v) - ) + ), } } @@ -677,7 +677,7 @@ export default class TagRenderingConfig { return { key, type: this.freeform.type, - values + values, } } catch (e) { console.error("Could not create FreeformValues for tagrendering", this.id) @@ -685,6 +685,43 @@ export default class TagRenderingConfig { } } + /** + * + * TagRenderingConfig.splitPostfixDistinguished("€10") // => {value: "€10", denomination: ""} + * TagRenderingConfig.splitPostfixDistinguished(" €10 / day ") // => {value: "€10", denomination: "day"} + * + */ + private static splitPostfixDistinguished(part: string): { value: string, denomination: string } { + const i = part.indexOf("/") + if (i < 0) { + return { value: part, denomination: "" } + } + const value = part.substring(0, i).trim() + const denomination = part.substring(i + 1).trim() + return { value, denomination } + } + + /** + * Converts the freeform value into a postfix-table, e.g. + * + * + * const charge = "€5/student;€6/citizen;€7/adult;€4/disabled;€10" + * TagRenderingConfig.buildPostfixTable(charge) // => {"student": "€5", "citizen": "€6", "adult": "€7", "disabled": "€4", "":"€10"} + * + */ + private static buildPostfixTable(v: string): Record { + const allValues = v.split(";").map((s) => s.trim()) + const perPostfix: Record = {} + for (const part of allValues) { + const { denomination, value } = TagRenderingConfig.splitPostfixDistinguished(part) + if (value === "") { + continue + } + perPostfix[denomination] = value.trim() + } + return perPostfix + } + /** * Given a value for the freeform key and an overview of the selected mappings, construct the correct tagsFilter to apply. * Result should be interpreted as "and" @@ -701,12 +738,12 @@ export default class TagRenderingConfig { * * const config = new TagRenderingConfig({"id":"capacity", "render": "Fits {capcity} books",freeform: {"key":"capacity",type:"pnat"} }) * config.constructChangeSpecification("", undefined, undefined, {}) // => undefined - * config.constructChangeSpecification("5", undefined, undefined, {}).optimize() // => [new Tag("capacity", "5")] + * config.constructChangeSpecification("5", undefined, undefined, {}) // => [new Tag("capacity", "5")] * * // Should pick a mapping, even if freeform is usedconstructChange * const config = new TagRenderingConfig({"id": "shop-types", render: "Shop type is {shop}", freeform: {key: "shop", addExtraTags:["fixme=freeform shop type used"]}, mappings:[{if: "shop=second_hand", then: "Second hand shop"}]}) - * config.constructChangeSpecification("freeform", 1, undefined, {}).asHumanString(false, false, {}) // => [new Tag("shop","freeform",new Tag("fixme","freeform shop type used")] - * config.constructChangeSpecification("freeform", undefined, undefined, {}) // => [new Tag("shop","freeform), new Tag("fixme","freeform shop type used")] + * config.constructChangeSpecification("freeform", 1, undefined, {}) // => [new Tag("shop","freeform"),new Tag("fixme","freeform shop type used")] + * config.constructChangeSpecification("freeform", undefined, undefined, {}) // => [new Tag("shop","freeform"), new Tag("fixme","freeform shop type used")] * config.constructChangeSpecification("second_hand", 1, undefined, {}) // => [new Tag("shop","second_hand")] * * @@ -750,12 +787,8 @@ export default class TagRenderingConfig { const pf = this.freeform?.postfixDistinguished if (pf) { const v = currentProperties[this.freeform.key] ?? "" - const allValues = v.split(";").map((s) => s.trim()) - const perPostfix: Record = {} - for (const value of allValues) { - const [v, postfix] = value.split("/").map(s => s.trim()) - perPostfix[postfix ?? pf] = v.trim() - } + const perPostfix = TagRenderingConfig.buildPostfixTable(v) + if (freeformValue === "" || freeformValue === undefined) { delete perPostfix[this.freeform.postfixDistinguished] } else { @@ -790,7 +823,7 @@ export default class TagRenderingConfig { // Either no mappings, or this is a radio-button selected freeform value const tag = [ new Tag(this.freeform.key, freeformValue), - ...(this.freeform.addExtraTags ?? []) + ...(this.freeform.addExtraTags ?? []), ] const newProperties = new And(tag).applyOn(currentProperties) if (this.invalidValues?.matchesProperties(newProperties)) { @@ -814,7 +847,7 @@ export default class TagRenderingConfig { selectedMappings.push( new And([ new Tag(this.freeform.key, freeformValue), - ...(this.freeform.addExtraTags ?? []) + ...(this.freeform.addExtraTags ?? []), ]) ) } @@ -847,12 +880,12 @@ export default class TagRenderingConfig { if (useFreeform) { return [ new Tag(this.freeform.key, freeformValue), - ...(this.freeform.addExtraTags ?? []) + ...(this.freeform.addExtraTags ?? []), ] } else if (singleSelectedMapping !== undefined) { return [ this.mappings[singleSelectedMapping].if, - ...(this.mappings[singleSelectedMapping].addExtraTags ?? []) + ...(this.mappings[singleSelectedMapping].addExtraTags ?? []), ] } else { console.error("TagRenderingConfig.ConstructSpecification has a weird fallback for", { @@ -860,7 +893,7 @@ export default class TagRenderingConfig { singleSelectedMapping, multiSelectedMapping, currentProperties, - useFreeform + useFreeform, }) return undefined } @@ -889,11 +922,11 @@ export default class TagRenderingConfig { } const msgs: string[] = [ icon + - " " + - "*" + - m.then.textFor(lang) + - "* is shown if with " + - m.if.asHumanString(true, false, {}) + " " + + "*" + + m.then.textFor(lang) + + "* is shown if with " + + m.if.asHumanString(true, false, {}), ] if (m.hideInAnswer === true) { @@ -902,7 +935,7 @@ export default class TagRenderingConfig { if (m.ifnot !== undefined) { msgs.push( "Unselecting this answer will add " + - m.ifnot.asHumanString(true, false, {}) + m.ifnot.asHumanString(true, false, {}) ) } return msgs.join(". ") @@ -926,7 +959,7 @@ export default class TagRenderingConfig { if (this.labels?.length > 0) { labels = [ "This tagrendering has labels ", - ...this.labels.map((label) => "`" + label + "`") + ...this.labels.map((label) => "`" + label + "`"), ].join("\n") } @@ -939,7 +972,7 @@ export default class TagRenderingConfig { freeform, mappings, condition, - labels + labels, ].join("\n") } @@ -978,17 +1011,8 @@ export default class TagRenderingConfig { if (!distinguish) { return value } - const parts = value.split(";") - for (const part of parts) { - if (part.indexOf("/") < 0) { - continue - } - const [v, denom] = part.split("/").map(s => s.trim()) - if (denom === distinguish) { - return v - } - } - return "" + const perPostfix = TagRenderingConfig.buildPostfixTable(value) + return perPostfix[distinguish] ?? "" } /** @@ -1043,19 +1067,21 @@ export default class TagRenderingConfig { /** * Gives all the tags that should be applied to "reset" the freeform key to an "unknown" state */ - public markUnknown(layer: LayerConfig, currentProperties: Record): UploadableTag[] { + public markUnknown( + layer: LayerConfig, + currentProperties: Record + ): UploadableTag[] { if (this.freeform?.postfixDistinguished) { const v = currentProperties[this.freeform.key] ?? "" - const allValues = v.split(";").filter( - part => part.split("/")[1]?.trim() !== this.freeform.postfixDistinguished - ) + const allValues = v + .split(";") + .filter((part) => part.split("/")[1]?.trim() !== this.freeform.postfixDistinguished) return [new Tag(this.freeform.key, allValues.join(";"))] } const keys = this.removeToSetUnknown(layer, currentProperties) - - return keys?.map(k => new Tag(k, "")) + return keys?.map((k) => new Tag(k, "")) } } @@ -1095,7 +1121,7 @@ export class TagRenderingConfigUtils { clone.mappings?.map((m) => { const mapping = { ...m, - priorityIf: m.priorityIf ?? TagUtils.Tag("id~*") + priorityIf: m.priorityIf ?? TagUtils.Tag("id~*"), } if (m.if.usedKeys().indexOf("nobrand") < 0) { // Erase 'nobrand=yes', unless this option explicitly sets it diff --git a/src/Models/ThemeConfig/ThemeConfig.ts b/src/Models/ThemeConfig/ThemeConfig.ts index de1851fc66..bb96fe744e 100644 --- a/src/Models/ThemeConfig/ThemeConfig.ts +++ b/src/Models/ThemeConfig/ThemeConfig.ts @@ -9,6 +9,10 @@ import LanguageUtils from "../../Utils/LanguageUtils" import { RasterLayerProperties } from "../RasterLayerProperties" import { Translatable } from "./Json/Translatable" +import { TagsFilter } from "../../Logic/Tags/TagsFilter" +import TagRenderingConfig from "./TagRenderingConfig" +import { TagUtils } from "../../Logic/Tags/TagUtils" +import { TagRenderingConfigJson } from "./Json/TagRenderingConfigJson" /** * Minimal information about a theme @@ -93,6 +97,14 @@ export default class ThemeConfig implements ThemeInformation { public readonly source: ThemeConfigJson public readonly enableCache: boolean + public readonly popups: Readonly<{ + id: string + dismissible?: boolean + condition: TagsFilter + title: TagRenderingConfig + body: TagRenderingConfig[] + }>[] + constructor( json: ThemeConfigJson, official = true, @@ -198,6 +210,21 @@ export default class ThemeConfig implements ThemeInformation { context + ".extraLink" ) + this.popups = (json.popup ?? []).map((p, i) => { + const ctx = context + ".popup." + i + if (!p.id) { + throw ctx + ": an id is required" + } + const body: TagRenderingConfigJson[] = Array.isArray(p.body) ? p.body : [p.body] + return { + id: p.id, + dismissible: p.dismissible ?? false, + condition: TagUtils.Tag(p.condition), + title: new TagRenderingConfig(p.title, ctx + ".title"), + body: body.map((body, i) => new TagRenderingConfig(body, ctx + ".body." + i)), + } + }) + this.hideFromOverview = json.hideFromOverview ?? false this.lockLocation = <[[number, number], [number, number]]>json.lockLocation ?? undefined this.enableUserBadge = json.enableUserBadge ?? true diff --git a/src/Models/ThemeConfig/WithContextLoader.ts b/src/Models/ThemeConfig/WithContextLoader.ts index 0fee9d6dbf..46d16e2812 100644 --- a/src/Models/ThemeConfig/WithContextLoader.ts +++ b/src/Models/ThemeConfig/WithContextLoader.ts @@ -12,7 +12,7 @@ export default class WithContextLoader { this._context = context } - /** Given a key, gets the corresponding property from the json (or the default if not found + /** Given a key, gets the corresponding property from the json (or the default if not found) * * The found value is interpreted as a tagrendering and fetched/parsed * */ diff --git a/src/UI/Base/LoginButton.svelte b/src/UI/Base/LoginButton.svelte index 21d3327267..011732003a 100644 --- a/src/UI/Base/LoginButton.svelte +++ b/src/UI/Base/LoginButton.svelte @@ -6,18 +6,26 @@ export let osmConnection: OsmConnection export let clss: string | undefined = undefined - + /** + * Show the button, even though we are logged in + */ + export let forceShow: boolean = false + export let msg: String = undefined if (osmConnection === undefined) { console.error("No osmConnection passed into loginButton") } let isLoggedIn = osmConnection.isLoggedIn -{#if !$isLoggedIn} +{#if !$isLoggedIn || forceShow} {/if} diff --git a/src/UI/Base/Popup.svelte b/src/UI/Base/Popup.svelte index 0670c5e7bf..f5290107b0 100644 --- a/src/UI/Base/Popup.svelte +++ b/src/UI/Base/Popup.svelte @@ -24,11 +24,13 @@ let dialogClass = "fixed top-0 start-0 end-0 h-modal inset-0 w-full p-4 flex border-none " + zIndex - export let backdropClass = "fixed inset-0 z-40 bg-gray-900 bg-opacity-50 dark:bg-opacity-80 frozen-glass" + export let backdropClass = + "fixed inset-0 z-40 bg-gray-900 bg-opacity-50 dark:bg-opacity-80 frozen-glass" if (fullscreen) { dialogClass += " h-full-child" } - let bodyClass = bodyPadding + " h-full space-y-4 flex-1 overflow-y-auto overscroll-contain background-normal" + let bodyClass = + bodyPadding + " h-full space-y-4 flex-1 overflow-y-auto overscroll-contain background-normal" let headerClass = "flex justify-between items-center p-2 px-4 md:px-5 rounded-t-lg" if (!$$slots.header) { @@ -43,7 +45,7 @@ shown.set(false)} - outsideclose + outsideclose={dismissable} size="xl" {dismissable} {defaultClass} diff --git a/src/UI/Image/LinkableImage.svelte b/src/UI/Image/LinkableImage.svelte index c1527215f7..a5748885b6 100644 --- a/src/UI/Image/LinkableImage.svelte +++ b/src/UI/Image/LinkableImage.svelte @@ -88,8 +88,7 @@ image={providedImage} imgClass="max-h-64 w-auto sm:h-32 md:h-64" attributionFormat="minimal" - > - + /> {#if linkable}